pub struct MsgraphMailFolderCreate { /* private fields */ }Expand description
Creates a Microsoft Graph mail folder.
Implementations§
Source§impl MsgraphMailFolderCreate
impl MsgraphMailFolderCreate
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
folder: &MsgraphMailFolder,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, folder: &MsgraphMailFolder, ) -> Result<Self, MsgraphSendError>
Creates folder, whose display_name must not be empty.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphMailFolderCreate
impl MsgraphCoroutine for MsgraphMailFolderCreate
Source§type Yield = MsgraphYield
type Yield = MsgraphYield
The I/O request type yielded while the coroutine progresses.
Source§type Return = Result<MsgraphSendOutput<MsgraphMailFolder>, MsgraphSendError>
type Return = Result<MsgraphSendOutput<MsgraphMailFolder>, MsgraphSendError>
The final value produced on completion.
Auto Trait Implementations§
impl Freeze for MsgraphMailFolderCreate
impl RefUnwindSafe for MsgraphMailFolderCreate
impl Send for MsgraphMailFolderCreate
impl Sync for MsgraphMailFolderCreate
impl Unpin for MsgraphMailFolderCreate
impl UnsafeUnpin for MsgraphMailFolderCreate
impl UnwindSafe for MsgraphMailFolderCreate
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