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