pub struct GetApisApiIdVersionsResponseMeta {
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 GetApisApiIdVersionsResponseMeta
impl Clone for GetApisApiIdVersionsResponseMeta
Source§fn clone(&self) -> GetApisApiIdVersionsResponseMeta
fn clone(&self) -> GetApisApiIdVersionsResponseMeta
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<'de> Deserialize<'de> for GetApisApiIdVersionsResponseMeta
impl<'de> Deserialize<'de> for GetApisApiIdVersionsResponseMeta
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 GetApisApiIdVersionsResponseMeta
impl PartialEq for GetApisApiIdVersionsResponseMeta
Source§fn eq(&self, other: &GetApisApiIdVersionsResponseMeta) -> bool
fn eq(&self, other: &GetApisApiIdVersionsResponseMeta) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetApisApiIdVersionsResponseMeta
Auto Trait Implementations§
impl Freeze for GetApisApiIdVersionsResponseMeta
impl RefUnwindSafe for GetApisApiIdVersionsResponseMeta
impl Send for GetApisApiIdVersionsResponseMeta
impl Sync for GetApisApiIdVersionsResponseMeta
impl Unpin for GetApisApiIdVersionsResponseMeta
impl UnwindSafe for GetApisApiIdVersionsResponseMeta
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