Enum imap_proto::types::AttributeValue [] [src]

pub enum AttributeValue<'a> {
    BodySection {
        section: Option<SectionPath>,
        index: Option<u32>,
        data: Option<&'a [u8]>,
    },
    Envelope(Envelope<'a>),
    Flags(Vec<&'a str>),
    InternalDate(&'a str),
    ModSeq(u64),
    Rfc822(Option<&'a [u8]>),
    Rfc822Size(u32),
    Uid(u32),
}

Variants

Fields of BodySection

Trait Implementations

impl<'a> Debug for AttributeValue<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> Eq for AttributeValue<'a>
[src]

impl<'a> PartialEq for AttributeValue<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl<'a> Send for AttributeValue<'a>

impl<'a> Sync for AttributeValue<'a>