pub struct GetApisResponseMeta {
pub limit: Option<f64>,
pub next_cursor: Option<String>,
pub total: Option<f64>,
}
Fields§
§limit: Option<f64>
The maximum number of records in the paginated response.
next_cursor: Option<String>
The Base64-encoded value that points to the next record in the results set.
total: Option<f64>
The number of records that match the defined criteria.
Trait Implementations§
Source§impl Clone for GetApisResponseMeta
impl Clone for GetApisResponseMeta
Source§fn clone(&self) -> GetApisResponseMeta
fn clone(&self) -> GetApisResponseMeta
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 GetApisResponseMeta
impl Debug for GetApisResponseMeta
Source§impl<'de> Deserialize<'de> for GetApisResponseMeta
impl<'de> Deserialize<'de> for GetApisResponseMeta
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
Source§impl PartialEq for GetApisResponseMeta
impl PartialEq for GetApisResponseMeta
Source§impl Serialize for GetApisResponseMeta
impl Serialize for GetApisResponseMeta
impl StructuralPartialEq for GetApisResponseMeta
Auto Trait Implementations§
impl Freeze for GetApisResponseMeta
impl RefUnwindSafe for GetApisResponseMeta
impl Send for GetApisResponseMeta
impl Sync for GetApisResponseMeta
impl Unpin for GetApisResponseMeta
impl UnwindSafe for GetApisResponseMeta
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