pub struct AddressBook {
pub ab_id: u64,
pub name: Box<str>,
pub description: Option<Box<str>>,
pub ctag: Box<str>,
pub created_at: Timestamp,
pub updated_at: Timestamp,
}Expand description
Address book collection metadata
Fields§
§ab_id: u64§name: Box<str>§description: Option<Box<str>>§ctag: Box<str>Collection tag — changes on any contact mutation within this book (used by CardDAV sync)
created_at: Timestamp§updated_at: TimestampTrait Implementations§
Source§impl Clone for AddressBook
impl Clone for AddressBook
Source§fn clone(&self) -> AddressBook
fn clone(&self) -> AddressBook
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 AddressBook
impl Debug for AddressBook
Auto Trait Implementations§
impl Freeze for AddressBook
impl RefUnwindSafe for AddressBook
impl Send for AddressBook
impl Sync for AddressBook
impl Unpin for AddressBook
impl UnsafeUnpin for AddressBook
impl UnwindSafe for AddressBook
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