pub struct MsgraphMessageGet { /* private fields */ }Expand description
Gets a Microsoft Graph message.
Implementations§
Source§impl MsgraphMessageGet
impl MsgraphMessageGet
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 message id.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphMessageGet
impl MsgraphCoroutine for MsgraphMessageGet
Source§type Yield = MsgraphYield
type Yield = MsgraphYield
The I/O request type yielded while the coroutine progresses.
Source§type Return = Result<MsgraphSendOutput<MsgraphMessage>, MsgraphSendError>
type Return = Result<MsgraphSendOutput<MsgraphMessage>, MsgraphSendError>
The final value produced on completion.
Auto Trait Implementations§
impl Freeze for MsgraphMessageGet
impl RefUnwindSafe for MsgraphMessageGet
impl Send for MsgraphMessageGet
impl Sync for MsgraphMessageGet
impl Unpin for MsgraphMessageGet
impl UnsafeUnpin for MsgraphMessageGet
impl UnwindSafe for MsgraphMessageGet
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