pub enum Address {
Mailbox(Mailbox),
Group {
name: String,
entries: MailboxList,
},
}
Variants§
Trait Implementations§
Source§impl EncodeHeaderValue for Address
impl EncodeHeaderValue for Address
fn encode_value(&self) -> SharedString<'static>
fn as_header(&self, _name: &str) -> Option<Header<'static>>
impl Eq for Address
impl StructuralPartialEq for Address
Auto Trait Implementations§
impl Freeze for Address
impl RefUnwindSafe for Address
impl Send for Address
impl Sync for Address
impl Unpin for Address
impl UnwindSafe for Address
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