pub struct MsgraphContactFolderCreate { /* private fields */ }Expand description
Creates a Microsoft Graph contact folder.
Implementations§
Source§impl MsgraphContactFolderCreate
impl MsgraphContactFolderCreate
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
folder: &MsgraphContactFolder,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, folder: &MsgraphContactFolder, ) -> Result<Self, MsgraphSendError>
Creates folder, whose display_name must not be empty.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphContactFolderCreate
impl MsgraphCoroutine for MsgraphContactFolderCreate
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 MsgraphContactFolderCreate
impl RefUnwindSafe for MsgraphContactFolderCreate
impl Send for MsgraphContactFolderCreate
impl Sync for MsgraphContactFolderCreate
impl Unpin for MsgraphContactFolderCreate
impl UnsafeUnpin for MsgraphContactFolderCreate
impl UnwindSafe for MsgraphContactFolderCreate
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