pub struct MsgraphMessageMove { /* private fields */ }Expand description
Moves a Microsoft Graph message into another folder.
Implementations§
Source§impl MsgraphMessageMove
impl MsgraphMessageMove
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
id: &str,
destination: &str,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, id: &str, destination: &str, ) -> Result<Self, MsgraphSendError>
Moves id into destination (a folder id or a well-known name
such as archive).
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphMessageMove
impl MsgraphCoroutine for MsgraphMessageMove
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 MsgraphMessageMove
impl RefUnwindSafe for MsgraphMessageMove
impl Send for MsgraphMessageMove
impl Sync for MsgraphMessageMove
impl Unpin for MsgraphMessageMove
impl UnsafeUnpin for MsgraphMessageMove
impl UnwindSafe for MsgraphMessageMove
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