pub enum Manage {
Create(String),
Delete(String),
Rename(String, String),
Subscribe(String, bool),
}Expand description
One folder-management action, its folder names already stripped of
the imap:account/ prefix.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Manage
impl RefUnwindSafe for Manage
impl Send for Manage
impl Sync for Manage
impl Unpin for Manage
impl UnsafeUnpin for Manage
impl UnwindSafe for Manage
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