Enum imap_codec::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§fn from(m: Macro) -> MacroOrFetchAttributes<'a>
fn from(m: Macro) -> MacroOrFetchAttributes<'a>
Converts to this type from the input type.