Enum imap_proto::types::StatusAttribute [−][src]
#[non_exhaustive]
pub enum StatusAttribute {
HighestModSeq(u64),
Messages(u32),
Recent(u32),
UidNext(u32),
UidValidity(u32),
Unseen(u32),
}Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Tuple Fields of HighestModSeq
0: u64Tuple Fields of Messages
0: u32Tuple Fields of Recent
0: u32Tuple Fields of UidNext
0: u32Tuple Fields of UidValidity
0: u32Tuple Fields of Unseen
0: u32Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for StatusAttribute
impl Send for StatusAttribute
impl Sync for StatusAttribute
impl Unpin for StatusAttribute
impl UnwindSafe for StatusAttribute
Blanket Implementations
Mutably borrows from an owned value. Read more