io-msgraph 0.1.0

Microsoft Graph API client library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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.

mod types;
#[doc(inline)]
pub use types::*;

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