pub struct SearchContactsResponse {
pub contacts: Vec<Contact>,
pub total: Option<u64>,
pub count: Option<u64>,
pub meta: Option<ContactsMeta>,
}Fields§
§contacts: Vec<Contact>§total: Option<u64>§count: Option<u64>§meta: Option<ContactsMeta>Trait Implementations§
Source§impl Clone for SearchContactsResponse
impl Clone for SearchContactsResponse
Source§fn clone(&self) -> SearchContactsResponse
fn clone(&self) -> SearchContactsResponse
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 SearchContactsResponse
impl Debug for SearchContactsResponse
Source§impl<'de> Deserialize<'de> for SearchContactsResponse
impl<'de> Deserialize<'de> for SearchContactsResponse
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 SearchContactsResponse
impl RefUnwindSafe for SearchContactsResponse
impl Send for SearchContactsResponse
impl Sync for SearchContactsResponse
impl Unpin for SearchContactsResponse
impl UnsafeUnpin for SearchContactsResponse
impl UnwindSafe for SearchContactsResponse
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