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