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