pub struct MsgraphMailFolderDelete { /* private fields */ }Expand description
Deletes a Microsoft Graph mail folder.
Implementations§
Source§impl MsgraphMailFolderDelete
impl MsgraphMailFolderDelete
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 mail folder id.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphMailFolderDelete
impl MsgraphCoroutine for MsgraphMailFolderDelete
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 MsgraphMailFolderDelete
impl RefUnwindSafe for MsgraphMailFolderDelete
impl Send for MsgraphMailFolderDelete
impl Sync for MsgraphMailFolderDelete
impl Unpin for MsgraphMailFolderDelete
impl UnsafeUnpin for MsgraphMailFolderDelete
impl UnwindSafe for MsgraphMailFolderDelete
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