pub struct Envelope {
pub id: String,
pub message_id: String,
pub flags: Flags,
pub from: Address,
pub to: Address,
pub subject: String,
pub date: DateTime<FixedOffset>,
}Expand description
Fields§
§id: StringThe shape of the envelope identifier may vary depending on the backend. For IMAP backend, it is an stringified auto-incremented integer. For Notmuch backend it is a Git-like hash.
message_id: StringThe Message-ID header from the email message.
flags: FlagsThe envelope flags.
from: AddressThe first address from the email message header From.
to: AddressThe first address from the email message header To.
subject: StringThe Subject header from the email message.
date: DateTime<FixedOffset>The Date header from the email message.
Implementations§
source§impl Envelope
impl Envelope
pub fn set_some_from(&mut self, addr: Option<Address>)
pub fn set_some_to(&mut self, addr: Option<Address>)
pub fn set_some_date(&mut self, date: Option<&DateTime>)
sourcepub fn set_date(&mut self, date: &DateTime)
pub fn set_date(&mut self, date: &DateTime)
Transform a mail_parser::DateTime into a fixed offset chrono::DateTime
and add it to the current envelope.
sourcepub fn format_date(&self, config: &AccountConfig) -> String
pub fn format_date(&self, config: &AccountConfig) -> String
Format the envelope date according to the datetime format and timezone from the account configuration.
sourcepub fn to_sync_cache_msg(&self) -> String
pub fn to_sync_cache_msg(&self) -> String
Build a message from the current envelope.
The message is just composed of two headers and contains no content. It is mostly used by the synchronization to cache envelopes.
Trait Implementations§
source§impl FromIterator<Envelope> for Envelopes
impl FromIterator<Envelope> for Envelopes
source§impl Ord for Envelope
impl Ord for Envelope
source§impl PartialEq for Envelope
impl PartialEq for Envelope
source§impl PartialOrd for Envelope
impl PartialOrd for Envelope
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moreimpl Eq for Envelope
Auto Trait Implementations§
impl RefUnwindSafe for Envelope
impl Send for Envelope
impl Sync for Envelope
impl Unpin for Envelope
impl UnwindSafe for Envelope
Blanket Implementations§
§impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
§fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
§impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
§fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<T, Dst> ConvAsUtil<Dst> for T
impl<T, Dst> ConvAsUtil<Dst> for T
§impl<T> ConvUtil for T
impl<T> ConvUtil for T
§fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst>,
fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst>,
§fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
§type Iter<'a> = Once<&'a T>
where
T: 'a
type Iter<'a> = Once<&'a T> where T: 'a
§fn contains(&self, val: &T) -> boolwhere
T: PartialEq,
fn contains(&self, val: &T) -> boolwhere
T: PartialEq,
§fn to_maybe_ref<'b>(item: <T as Seq<'p, T>>::Item<'b>) -> Maybe<T, &'p T>where
'p: 'b,
fn to_maybe_ref<'b>(item: <T as Seq<'p, T>>::Item<'b>) -> Maybe<T, &'p T>where
'p: 'b,
MaybeRef].