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
//! Microsoft Graph message attachments
//! (`users.messages.attachments`): create, list, get raw content,
//! delete.
//!
//! <https://learn.microsoft.com/en-us/graph/api/resources/attachment>

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

pub mod create;
pub mod delete;
pub mod get_raw;
pub mod list;