io-gmail 0.2.1

Google Gmail REST API client library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Gmail API v1.
//!
//! `rest` mirrors the REST resource tree (`users.*`); sibling modules
//! add composed coroutines built on the REST ones (e.g. `history_poll`,
//! a poll-based mailbox watcher).

#[cfg(feature = "client")]
pub mod client;
pub mod history_poll;
pub mod query;
pub mod rest;
pub mod send;