pub struct MsgraphMessageUpdate { /* private fields */ }Expand description
Updates a Microsoft Graph message.
Implementations§
Source§impl MsgraphMessageUpdate
impl MsgraphMessageUpdate
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
id: &str,
message: &MsgraphMessage,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, id: &str, message: &MsgraphMessage, ) -> Result<Self, MsgraphSendError>
Patches the message id with the set fields of message.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphMessageUpdate
impl MsgraphCoroutine for MsgraphMessageUpdate
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 MsgraphMessageUpdate
impl RefUnwindSafe for MsgraphMessageUpdate
impl Send for MsgraphMessageUpdate
impl Sync for MsgraphMessageUpdate
impl Unpin for MsgraphMessageUpdate
impl UnsafeUnpin for MsgraphMessageUpdate
impl UnwindSafe for MsgraphMessageUpdate
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