pub struct MailingList {
pub id: String,
pub name: String,
pub count: u32,
}Expand description
A mailing list found by scanning List-Id headers.
Fields§
§id: StringThe bare identifier, which is what List: searches.
name: StringThe human label the header carried, falling back to the identifier.
count: u32Trait Implementations§
Source§impl Clone for MailingList
impl Clone for MailingList
Source§fn clone(&self) -> MailingList
fn clone(&self) -> MailingList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MailingList
impl Debug for MailingList
Auto Trait Implementations§
impl Freeze for MailingList
impl RefUnwindSafe for MailingList
impl Send for MailingList
impl Sync for MailingList
impl Unpin for MailingList
impl UnsafeUnpin for MailingList
impl UnwindSafe for MailingList
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