Struct async_imap::types::Fetch  
source · pub struct Fetch {
    pub message: Seq,
    pub uid: Option<Uid>,
    pub size: Option<u32>,
    pub modseq: Option<u64>,
    /* private fields */
}Expand description
An IMAP FETCH response that contains
data about a particular message. This response occurs as the result of a FETCH or STORE
command, as well as by unilateral server decision (e.g., flag updates).
Fields§
§message: SeqThe ordinal number of this message in its containing mailbox.
uid: Option<Uid>A number expressing the unique identifier of the message.
Only present if UID was specified in the query argument to FETCH and the server
supports UIDs.
size: Option<u32>A number expressing the RFC-2822 size of the message.
Only present if RFC822.SIZE was specified in the query argument to FETCH.
modseq: Option<u64>A number expressing the RFC-7162 mod-sequence of the message.
Implementations§
source§impl Fetch
 
impl Fetch
sourcepub fn flags(&self) -> impl Iterator<Item = Flag<'_>>
 
pub fn flags(&self) -> impl Iterator<Item = Flag<'_>>
A list of flags that are set for this message.
sourcepub fn header(&self) -> Option<&[u8]>
 
pub fn header(&self) -> Option<&[u8]>
The bytes that make up the header of this message, if BODY[HEADER], BODY.PEEK[HEADER],
or RFC822.HEADER was included in the query argument to FETCH.
sourcepub fn body(&self) -> Option<&[u8]>
 
pub fn body(&self) -> Option<&[u8]>
The bytes that make up this message, included if BODY[] or RFC822 was included in the
query argument to FETCH. The bytes SHOULD be interpreted by the client according to the
content transfer encoding, body type, and subtype.
sourcepub fn text(&self) -> Option<&[u8]>
 
pub fn text(&self) -> Option<&[u8]>
The bytes that make up the text of this message, included if BODY[TEXT], RFC822.TEXT,
or BODY.PEEK[TEXT] was included in the query argument to FETCH. The bytes SHOULD be
interpreted by the client according to the content transfer encoding, body type, and
subtype.
sourcepub fn envelope(&self) -> Option<&Envelope<'_>>
 
pub fn envelope(&self) -> Option<&Envelope<'_>>
The envelope of this message, if ENVELOPE was included in the query argument to
FETCH. This is computed by the server by parsing the
RFC-2822 header into the component parts, defaulting
various fields as necessary.
The full description of the format of the envelope is given in RFC 3501 section 7.4.2.
sourcepub fn section(&self, path: &SectionPath) -> Option<&[u8]>
 
pub fn section(&self, path: &SectionPath) -> Option<&[u8]>
Extract the bytes that makes up the given BOD[<section>] of a FETCH response.
See section 7.4.2 of RFC 3501 for details.
sourcepub fn internal_date(&self) -> Option<DateTime<FixedOffset>>
 
pub fn internal_date(&self) -> Option<DateTime<FixedOffset>>
Extract the INTERNALDATE of a FETCH response
See section 2.3.3 of RFC 3501 for details.
sourcepub fn bodystructure(&self) -> Option<&BodyStructure<'_>>
 
pub fn bodystructure(&self) -> Option<&BodyStructure<'_>>
Extract the BODYSTRUCTURE of a FETCH response
See section 2.3.6 of RFC 3501 for details.