pub struct ContactsMetaSchema {
pub total: Option<f64>,
pub next_page_url: Option<String>,
pub start_after_id: Option<String>,
pub start_after: Option<f64>,
pub current_page: Option<f64>,
pub next_page: Option<f64>,
pub prev_page: Option<f64>,
}Available on crate feature
contacts only.Expand description
ContactsMetaSchema from the GoHighLevel OpenAPI spec.
Fields§
§total: Option<f64>§next_page_url: Option<String>§start_after_id: Option<String>§start_after: Option<f64>§current_page: Option<f64>§next_page: Option<f64>§prev_page: Option<f64>Trait Implementations§
Source§impl Clone for ContactsMetaSchema
impl Clone for ContactsMetaSchema
Source§fn clone(&self) -> ContactsMetaSchema
fn clone(&self) -> ContactsMetaSchema
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 ContactsMetaSchema
impl Debug for ContactsMetaSchema
Source§impl Default for ContactsMetaSchema
impl Default for ContactsMetaSchema
Source§fn default() -> ContactsMetaSchema
fn default() -> ContactsMetaSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContactsMetaSchema
impl<'de> Deserialize<'de> for ContactsMetaSchema
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 ContactsMetaSchema
impl RefUnwindSafe for ContactsMetaSchema
impl Send for ContactsMetaSchema
impl Sync for ContactsMetaSchema
impl Unpin for ContactsMetaSchema
impl UnsafeUnpin for ContactsMetaSchema
impl UnwindSafe for ContactsMetaSchema
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