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