pub struct Contact {
pub c_id: u64,
pub ab_id: u64,
pub uid: Box<str>,
pub etag: Box<str>,
pub vcard: Box<str>,
pub extracted: ContactExtracted,
pub created_at: Timestamp,
pub updated_at: Timestamp,
}Expand description
Full contact row including the authoritative stored vCard blob.
Fields§
§c_id: u64§ab_id: u64§uid: Box<str>§etag: Box<str>§vcard: Box<str>§extracted: ContactExtracted§created_at: Timestamp§updated_at: TimestampTrait Implementations§
Auto Trait Implementations§
impl Freeze for Contact
impl RefUnwindSafe for Contact
impl Send for Contact
impl Sync for Contact
impl Unpin for Contact
impl UnsafeUnpin for Contact
impl UnwindSafe for Contact
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