io-gmail 0.1.0

Gmail REST API client library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Gmail labels (`users.labels`): list, get, create, patch, update,
//! delete.
//!
//! <https://developers.google.com/gmail/api/reference/rest/v1/users.labels>

mod types;
#[doc(inline)]
pub use types::*;

pub mod create;
pub mod delete;
pub mod get;
pub mod list;
pub mod patch;
pub mod update;