1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
//! # yt-api //! //! With the `yt-api` crate you can interact asynchronously with the youtube-api. //! //! ## Performing a search query //! //! To perform a search query, you can create a [`SearchList`][search_list] query. //! //! ```rust //! # use yt_api::{ //! # search::SearchList, //! # ApiKey, //! # }; //! # //! # #[runtime::main] //! # async fn main() { //! let result = SearchList::new(ApiKey::new("your-youtube-api-key")).q("rust lang").await; //! # } //! ``` //! //! [search_list]: ./search/struct.SearchList.html //! [search_perform]: ./search/struct.SearchList.html#method.perform pub mod search; use serde::Serialize; #[derive(Debug, Clone, Serialize)] pub struct ApiKey(String); impl ApiKey { pub fn new(key: impl Into<String>) -> Self { Self(key.into()) } }