pub struct HeaderAddressList(/* private fields */);
Implementations§
source§impl HeaderAddressList
impl HeaderAddressList
sourcepub fn domain(&self) -> Result<&str>
pub fn domain(&self) -> Result<&str>
If the address list is comprised of a single entry, returns just the email domain from that entry
sourcepub fn user(&self) -> Result<&str>
pub fn user(&self) -> Result<&str>
If the address list is comprised of a single entry, returns just the email domain from that entry
sourcepub fn name(&self) -> Result<Option<&str>>
pub fn name(&self) -> Result<Option<&str>>
If the address list is comprised of a single entry, returns just the display name portion, if any
pub fn email(&self) -> Result<Option<&str>>
sourcepub fn flatten(&self) -> Vec<&HeaderAddress>
pub fn flatten(&self) -> Vec<&HeaderAddress>
Flattens the groups and list and returns a simple list of addresses
pub fn single_address_cracked(&self) -> Result<(&str, &str)>
pub fn single_address_string(&self) -> Result<&str>
pub fn single_address(&self) -> Result<&HeaderAddress>
Trait Implementations§
source§impl Clone for HeaderAddressList
impl Clone for HeaderAddressList
source§fn clone(&self) -> HeaderAddressList
fn clone(&self) -> HeaderAddressList
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HeaderAddressList
impl Debug for HeaderAddressList
source§impl<'de> Deserialize<'de> for HeaderAddressList
impl<'de> Deserialize<'de> for HeaderAddressList
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<AddressList> for HeaderAddressList
impl From<AddressList> for HeaderAddressList
source§fn from(input: AddressList) -> HeaderAddressList
fn from(input: AddressList) -> HeaderAddressList
Converts to this type from the input type.
source§impl PartialEq for HeaderAddressList
impl PartialEq for HeaderAddressList
source§impl Serialize for HeaderAddressList
impl Serialize for HeaderAddressList
source§impl UserData for HeaderAddressList
impl UserData for HeaderAddressList
source§fn add_fields<F: UserDataFields<Self>>(fields: &mut F)
fn add_fields<F: UserDataFields<Self>>(fields: &mut F)
Adds custom fields specific to this userdata.
source§fn add_methods<M: UserDataMethods<Self>>(methods: &mut M)
fn add_methods<M: UserDataMethods<Self>>(methods: &mut M)
Adds custom methods and operators specific to this userdata.
impl Eq for HeaderAddressList
impl StructuralPartialEq for HeaderAddressList
Auto Trait Implementations§
impl Freeze for HeaderAddressList
impl RefUnwindSafe for HeaderAddressList
impl Send for HeaderAddressList
impl Sync for HeaderAddressList
impl Unpin for HeaderAddressList
impl UnwindSafe for HeaderAddressList
Blanket Implementations§
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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
Compare self to
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoLua for Twhere
T: UserData + MaybeSend + 'static,
impl<T> IntoLua for Twhere
T: UserData + MaybeSend + 'static,
§impl<T> IntoLuaMulti for Twhere
T: IntoLua,
impl<T> IntoLuaMulti for Twhere
T: IntoLua,
§fn into_lua_multi(self, lua: &Lua) -> Result<MultiValue, Error>
fn into_lua_multi(self, lua: &Lua) -> Result<MultiValue, Error>
Performs the conversion.