io_msgraph/v1/mod.rs
1//! Microsoft Graph API v1.0.
2//!
3//! `rest` mirrors the Graph resource tree (`users.*`); `send` is the
4//! HTTP/JSON transport every coroutine delegates to, and `query` turns a
5//! params struct into OData query pairs.
6
7mod types;
8#[doc(inline)]
9pub use types::*;
10
11#[cfg(feature = "client")]
12pub mod client;
13pub mod query;
14pub mod rest;
15pub mod send;