pub struct ContactListing {
pub availability: Availability,
pub contacts: Vec<Contact>,
pub total: usize,
}Fields§
§availability: Availability§contacts: Vec<Contact>§total: usizeTotal match count, which may be larger than contacts.len() when
the backend paginates.
Trait Implementations§
Source§impl Clone for ContactListing
impl Clone for ContactListing
Source§fn clone(&self) -> ContactListing
fn clone(&self) -> ContactListing
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 ContactListing
impl Debug for ContactListing
Source§impl<'de> Deserialize<'de> for ContactListing
impl<'de> Deserialize<'de> for ContactListing
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ContactListing
impl RefUnwindSafe for ContactListing
impl Send for ContactListing
impl Sync for ContactListing
impl Unpin for ContactListing
impl UnsafeUnpin for ContactListing
impl UnwindSafe for ContactListing
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