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