pub struct MsgraphAttachmentDelete { /* private fields */ }Expand description
Deletes an attachment of a Microsoft Graph message.
Implementations§
Source§impl MsgraphAttachmentDelete
impl MsgraphAttachmentDelete
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
message_id: &str,
attachment_id: &str,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, message_id: &str, attachment_id: &str, ) -> Result<Self, MsgraphSendError>
Deletes the attachment attachment_id of the message
message_id.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphAttachmentDelete
impl MsgraphCoroutine for MsgraphAttachmentDelete
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 MsgraphAttachmentDelete
impl RefUnwindSafe for MsgraphAttachmentDelete
impl Send for MsgraphAttachmentDelete
impl Sync for MsgraphAttachmentDelete
impl Unpin for MsgraphAttachmentDelete
impl UnsafeUnpin for MsgraphAttachmentDelete
impl UnwindSafe for MsgraphAttachmentDelete
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