pub struct AddressEntry {
pub name: Option<String>,
pub email: String,
pub source: &'static str,
pub count: usize,
}Fields§
§name: Option<String>§email: String§source: &'static str§count: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for AddressEntry
impl RefUnwindSafe for AddressEntry
impl Send for AddressEntry
impl Sync for AddressEntry
impl Unpin for AddressEntry
impl UnsafeUnpin for AddressEntry
impl UnwindSafe for AddressEntry
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