pub struct MsgraphContactUpdate { /* private fields */ }Expand description
Updates a Microsoft Graph contact.
Implementations§
Source§impl MsgraphContactUpdate
impl MsgraphContactUpdate
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
id: &str,
contact: &MsgraphContact,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, id: &str, contact: &MsgraphContact, ) -> Result<Self, MsgraphSendError>
Patches the contact id with the set and null fields of
contact.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphContactUpdate
impl MsgraphCoroutine for MsgraphContactUpdate
Source§type Yield = MsgraphYield
type Yield = MsgraphYield
The I/O request type yielded while the coroutine progresses.
Source§type Return = Result<MsgraphSendOutput<MsgraphContact>, MsgraphSendError>
type Return = Result<MsgraphSendOutput<MsgraphContact>, MsgraphSendError>
The final value produced on completion.
Auto Trait Implementations§
impl Freeze for MsgraphContactUpdate
impl RefUnwindSafe for MsgraphContactUpdate
impl Send for MsgraphContactUpdate
impl Sync for MsgraphContactUpdate
impl Unpin for MsgraphContactUpdate
impl UnsafeUnpin for MsgraphContactUpdate
impl UnwindSafe for MsgraphContactUpdate
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