Skip to main content

io_gmail/v1/
mod.rs

1//! Gmail API v1.
2//!
3//! `rest` mirrors the REST resource tree (`users.*`); sibling modules
4//! add composed coroutines built on the REST ones (e.g. `history_poll`,
5//! a poll-based mailbox watcher).
6
7#[cfg(feature = "client")]
8pub mod client;
9pub mod history_poll;
10pub mod query;
11pub mod rest;
12pub mod send;