io-msgraph 0.2.2

Microsoft Graph API client library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Microsoft Graph API v1.0.
//!
//! `rest` mirrors the Graph resource tree (`users.*`); `send` is the
//! HTTP/JSON transport every coroutine delegates to, and `query` turns a
//! params struct into OData query pairs.

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