Enum imap_types::command::fetch::Macro
source · pub enum Macro {
All,
Fast,
Full,
}Expand description
There are three macros which specify commonly-used sets of data items, and can be used instead of data items.
Variants§
All
ALL Macro equivalent to:
(FLAGS INTERNALDATE RFC822.SIZE ENVELOPE)
Fast
FAST Macro equivalent to:
(FLAGS INTERNALDATE RFC822.SIZE)
Full
FULL Macro equivalent to:
(FLAGS INTERNALDATE RFC822.SIZE ENVELOPE BODY)
Implementations§
Trait Implementations§
source§impl<'a> From<Macro> for MacroOrFetchAttributes<'a>
impl<'a> From<Macro> for MacroOrFetchAttributes<'a>
source§impl PartialEq<Macro> for Macro
impl PartialEq<Macro> for Macro
impl Eq for Macro
impl StructuralEq for Macro
impl StructuralPartialEq for Macro
Auto Trait Implementations§
impl RefUnwindSafe for Macro
impl Send for Macro
impl Sync for Macro
impl Unpin for Macro
impl UnwindSafe for Macro
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