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