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 contact folders (`users.contactFolders`): list,
//! get, create, update, delete, list child folders.
//!
//! <https://learn.microsoft.com/en-us/graph/api/resources/contactfolder>

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

pub mod child_folders;
pub mod create;
pub mod delete;
pub mod get;
pub mod list;
pub mod update;