pub struct MsgraphContactFolderGet { /* private fields */ }Expand description
Gets a Microsoft Graph contact folder.
Implementations§
Source§impl MsgraphContactFolderGet
impl MsgraphContactFolderGet
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 contact folder id.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphContactFolderGet
impl MsgraphCoroutine for MsgraphContactFolderGet
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 MsgraphContactFolderGet
impl RefUnwindSafe for MsgraphContactFolderGet
impl Send for MsgraphContactFolderGet
impl Sync for MsgraphContactFolderGet
impl Unpin for MsgraphContactFolderGet
impl UnsafeUnpin for MsgraphContactFolderGet
impl UnwindSafe for MsgraphContactFolderGet
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