Skip to main content

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
7#[cfg(feature = "client")]
8pub mod client;
9pub mod field;
10pub mod query;
11pub mod rest;
12pub mod send;