pub struct DropletsListResponseMeta {
pub total: i64,
}Expand description
DropletsListResponseMeta
JSON schema
{
"allOf": [
{
"description": "Information about the response itself.",
"type": "object",
"properties": {
"total": {
"description": "Number of objects returned by the request.",
"examples": [
1
],
"type": "integer"
}
}
},
{
"required": [
"total"
]
}
]
}Fields§
§total: i64Number of objects returned by the request.
Trait Implementations§
Source§impl Clone for DropletsListResponseMeta
impl Clone for DropletsListResponseMeta
Source§fn clone(&self) -> DropletsListResponseMeta
fn clone(&self) -> DropletsListResponseMeta
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 DropletsListResponseMeta
impl Debug for DropletsListResponseMeta
Source§impl<'de> Deserialize<'de> for DropletsListResponseMeta
impl<'de> Deserialize<'de> for DropletsListResponseMeta
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 From<&DropletsListResponseMeta> for DropletsListResponseMeta
impl From<&DropletsListResponseMeta> for DropletsListResponseMeta
Source§fn from(value: &DropletsListResponseMeta) -> Self
fn from(value: &DropletsListResponseMeta) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DropletsListResponseMeta
impl RefUnwindSafe for DropletsListResponseMeta
impl Send for DropletsListResponseMeta
impl Sync for DropletsListResponseMeta
impl Unpin for DropletsListResponseMeta
impl UnsafeUnpin for DropletsListResponseMeta
impl UnwindSafe for DropletsListResponseMeta
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