pub struct MsgraphMessageDelete { /* private fields */ }Expand description
Deletes a Microsoft Graph message.
Implementations§
Source§impl MsgraphMessageDelete
impl MsgraphMessageDelete
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
id: &str,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, id: &str, ) -> Result<Self, MsgraphSendError>
Deletes the message id.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphMessageDelete
impl MsgraphCoroutine for MsgraphMessageDelete
Source§type Yield = MsgraphYield
type Yield = MsgraphYield
The I/O request type yielded while the coroutine progresses.
Source§type Return = Result<MsgraphSendOutput<MsgraphNoResponse>, MsgraphSendError>
type Return = Result<MsgraphSendOutput<MsgraphNoResponse>, MsgraphSendError>
The final value produced on completion.
Auto Trait Implementations§
impl Freeze for MsgraphMessageDelete
impl RefUnwindSafe for MsgraphMessageDelete
impl Send for MsgraphMessageDelete
impl Sync for MsgraphMessageDelete
impl Unpin for MsgraphMessageDelete
impl UnsafeUnpin for MsgraphMessageDelete
impl UnwindSafe for MsgraphMessageDelete
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more