pub struct MsgraphMailFolderGet { /* private fields */ }Expand description
Gets a Microsoft Graph mail folder.
Implementations§
Source§impl MsgraphMailFolderGet
impl MsgraphMailFolderGet
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>
Gets the mail folder id (an id or a well-known name such as
inbox).
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphMailFolderGet
impl MsgraphCoroutine for MsgraphMailFolderGet
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 MsgraphMailFolderGet
impl RefUnwindSafe for MsgraphMailFolderGet
impl Send for MsgraphMailFolderGet
impl Sync for MsgraphMailFolderGet
impl Unpin for MsgraphMailFolderGet
impl UnsafeUnpin for MsgraphMailFolderGet
impl UnwindSafe for MsgraphMailFolderGet
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