1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Gmail threads (`users.threads`): list, get, modify, trash, untrash, //! delete. //! //! <https://developers.google.com/gmail/api/reference/rest/v1/users.threads> mod types; #[doc(inline)] pub use types::*; pub mod delete; pub mod get; pub mod list; pub mod modify; pub mod trash; pub mod untrash;