pub struct AddressBook {
pub id: i64,
pub name: String,
pub description: String,
}Expand description
A CardDAV address book collection.
Fields§
§id: i64Store-native primary key. Surfaces as the FK on every contact row.
name: StringURL-safe collection name; also returned as <D:displayname>.
description: StringFree-form description; returned as <CR:addressbook-description>.
Trait 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 moreAuto 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