pub struct ContactListsResponse {
pub lists: Vec<ContactList>,
pub total: i32,
pub limit: i32,
pub offset: i32,
}Fields§
§lists: Vec<ContactList>§total: i32§limit: i32§offset: i32Trait Implementations§
Source§impl Clone for ContactListsResponse
impl Clone for ContactListsResponse
Source§fn clone(&self) -> ContactListsResponse
fn clone(&self) -> ContactListsResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 ContactListsResponse
impl Debug for ContactListsResponse
Source§impl<'de> Deserialize<'de> for ContactListsResponse
impl<'de> Deserialize<'de> for ContactListsResponse
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 ContactListsResponse
impl RefUnwindSafe for ContactListsResponse
impl Send for ContactListsResponse
impl Sync for ContactListsResponse
impl Unpin for ContactListsResponse
impl UnsafeUnpin for ContactListsResponse
impl UnwindSafe for ContactListsResponse
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