pub struct MsgraphMailFolderCopy { /* private fields */ }Expand description
Copies a Microsoft Graph mail folder into another folder.
Implementations§
Source§impl MsgraphMailFolderCopy
impl MsgraphMailFolderCopy
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 MsgraphMailFolderCopy
impl MsgraphCoroutine for MsgraphMailFolderCopy
Source§type Yield = MsgraphYield
type Yield = MsgraphYield
The I/O request type yielded while the coroutine progresses.
Source§type Return = Result<MsgraphSendOutput<MsgraphMailFolder>, MsgraphSendError>
type Return = Result<MsgraphSendOutput<MsgraphMailFolder>, MsgraphSendError>
The final value produced on completion.
Auto Trait Implementations§
impl Freeze for MsgraphMailFolderCopy
impl RefUnwindSafe for MsgraphMailFolderCopy
impl Send for MsgraphMailFolderCopy
impl Sync for MsgraphMailFolderCopy
impl Unpin for MsgraphMailFolderCopy
impl UnsafeUnpin for MsgraphMailFolderCopy
impl UnwindSafe for MsgraphMailFolderCopy
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