/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use remote_settings::RemoteSettingsConfig; mod config; mod db; mod error; mod keyword; pub mod pocket; mod provider; mod rs; mod schema; mod store; mod suggestion; mod yelp; pub use config::{SuggestGlobalConfig, SuggestProviderConfig}; pub use error::SuggestApiError; pub use provider::SuggestionProvider; pub use store::{SuggestIngestionConstraints, SuggestStore, SuggestStoreBuilder}; pub use suggestion::{raw_suggestion_url_matches, Suggestion}; pub(crate) type Result = std::result::Result; pub type SuggestApiResult = std::result::Result; /// A query for suggestions to show in the address bar. #[derive(Debug, Default)] pub struct SuggestionQuery { pub keyword: String, pub providers: Vec, pub limit: Option, } uniffi::include_scaffolding!("suggest");