pub struct MsgraphContactGet { /* private fields */ }Expand description
Gets a Microsoft Graph contact.
Implementations§
Source§impl MsgraphContactGet
impl MsgraphContactGet
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
id: &str,
expand: Option<&str>,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, id: &str, expand: Option<&str>, ) -> Result<Self, MsgraphSendError>
Gets the contact id, $expanding the given navigation clause
when one is passed.
Graph omits extended properties from responses unless the request expands them (e.g. a filtered extended-property expansion).
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphContactGet
impl MsgraphCoroutine for MsgraphContactGet
Source§type Yield = MsgraphYield
type Yield = MsgraphYield
The I/O request type yielded while the coroutine progresses.
Source§type Return = Result<MsgraphSendOutput<MsgraphContact>, MsgraphSendError>
type Return = Result<MsgraphSendOutput<MsgraphContact>, MsgraphSendError>
The final value produced on completion.
Auto Trait Implementations§
impl Freeze for MsgraphContactGet
impl RefUnwindSafe for MsgraphContactGet
impl Send for MsgraphContactGet
impl Sync for MsgraphContactGet
impl Unpin for MsgraphContactGet
impl UnsafeUnpin for MsgraphContactGet
impl UnwindSafe for MsgraphContactGet
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