pub struct ContactView {
pub c_id: u64,
pub ab_id: u64,
pub uid: Box<str>,
pub etag: Box<str>,
pub extracted: ContactExtracted,
pub created_at: Timestamp,
pub updated_at: Timestamp,
}Expand description
Contact summary without the vCard blob — for list endpoints (REST + CardDAV REPORTs that don’t need the full body).
Fields§
§c_id: u64§ab_id: u64§uid: Box<str>§etag: Box<str>§extracted: ContactExtracted§created_at: Timestamp§updated_at: TimestampTrait Implementations§
Source§impl Clone for ContactView
impl Clone for ContactView
Source§fn clone(&self) -> ContactView
fn clone(&self) -> ContactView
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 ContactView
impl RefUnwindSafe for ContactView
impl Send for ContactView
impl Sync for ContactView
impl Unpin for ContactView
impl UnsafeUnpin for ContactView
impl UnwindSafe for ContactView
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