pub struct RegistryListRepositoriesV2ResponseMeta {
pub total: i64,
}Expand description
RegistryListRepositoriesV2ResponseMeta
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 RegistryListRepositoriesV2ResponseMeta
impl Clone for RegistryListRepositoriesV2ResponseMeta
Source§fn clone(&self) -> RegistryListRepositoriesV2ResponseMeta
fn clone(&self) -> RegistryListRepositoriesV2ResponseMeta
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<'de> Deserialize<'de> for RegistryListRepositoriesV2ResponseMeta
impl<'de> Deserialize<'de> for RegistryListRepositoriesV2ResponseMeta
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<&RegistryListRepositoriesV2ResponseMeta> for RegistryListRepositoriesV2ResponseMeta
impl From<&RegistryListRepositoriesV2ResponseMeta> for RegistryListRepositoriesV2ResponseMeta
Source§fn from(value: &RegistryListRepositoriesV2ResponseMeta) -> Self
fn from(value: &RegistryListRepositoriesV2ResponseMeta) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RegistryListRepositoriesV2ResponseMeta
impl RefUnwindSafe for RegistryListRepositoriesV2ResponseMeta
impl Send for RegistryListRepositoriesV2ResponseMeta
impl Sync for RegistryListRepositoriesV2ResponseMeta
impl Unpin for RegistryListRepositoriesV2ResponseMeta
impl UnsafeUnpin for RegistryListRepositoriesV2ResponseMeta
impl UnwindSafe for RegistryListRepositoriesV2ResponseMeta
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