pub struct MsgraphMailFolderMove { /* private fields */ }Expand description
Moves a Microsoft Graph mail folder into another folder.
Implementations§
Source§impl MsgraphMailFolderMove
impl MsgraphMailFolderMove
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 MsgraphMailFolderMove
impl MsgraphCoroutine for MsgraphMailFolderMove
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 MsgraphMailFolderMove
impl RefUnwindSafe for MsgraphMailFolderMove
impl Send for MsgraphMailFolderMove
impl Sync for MsgraphMailFolderMove
impl Unpin for MsgraphMailFolderMove
impl UnsafeUnpin for MsgraphMailFolderMove
impl UnwindSafe for MsgraphMailFolderMove
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