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