pub struct MsgraphMessageCopy { /* private fields */ }Expand description
Copies a Microsoft Graph message into another folder.
Implementations§
Source§impl MsgraphMessageCopy
impl MsgraphMessageCopy
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>
Copies id into destination (a folder id or a well-known name
such as archive).
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphMessageCopy
impl MsgraphCoroutine for MsgraphMessageCopy
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 MsgraphMessageCopy
impl RefUnwindSafe for MsgraphMessageCopy
impl Send for MsgraphMessageCopy
impl Sync for MsgraphMessageCopy
impl Unpin for MsgraphMessageCopy
impl UnsafeUnpin for MsgraphMessageCopy
impl UnwindSafe for MsgraphMessageCopy
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