pub struct ContactsMeta {
pub total: Option<u64>,
pub current_page: Option<u32>,
pub next_page_url: Option<String>,
pub prev_page_url: Option<String>,
pub start_after: Option<String>,
pub start_after_id: Option<String>,
}Fields§
§total: Option<u64>§current_page: Option<u32>§next_page_url: Option<String>§prev_page_url: Option<String>§start_after: Option<String>§start_after_id: Option<String>Trait Implementations§
Source§impl Clone for ContactsMeta
impl Clone for ContactsMeta
Source§fn clone(&self) -> ContactsMeta
fn clone(&self) -> ContactsMeta
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 ContactsMeta
impl Debug for ContactsMeta
Source§impl<'de> Deserialize<'de> for ContactsMeta
impl<'de> Deserialize<'de> for ContactsMeta
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 ContactsMeta
impl RefUnwindSafe for ContactsMeta
impl Send for ContactsMeta
impl Sync for ContactsMeta
impl Unpin for ContactsMeta
impl UnsafeUnpin for ContactsMeta
impl UnwindSafe for ContactsMeta
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