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
16
17
//! Microsoft Graph mail folders (`users.mailFolders`): list, get,
//! create, update, delete, copy, move, list child folders.
//!
//! <https://learn.microsoft.com/en-us/graph/api/resources/mailfolder>

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

pub mod child_folders;
pub mod copy;
pub mod create;
pub mod delete;
pub mod get;
pub mod list;
pub mod r#move;
pub mod update;