pub struct TagsGetResponseTagResourcesVolumes {
pub count: Option<u64>,
pub last_tagged_uri: Option<String>,
}Expand description
TagsGetResponseTagResourcesVolumes
JSON schema
{
"allOf": [
{
"description": "Volumes that are tagged with the specified tag.<br>Requires `block_storage:read` scope."
},
{
"description": "Tagged Resource Statistics include metadata regarding the resource type that has been tagged.",
"type": "object",
"properties": {
"count": {
"description": "The number of tagged objects for this type of resource.",
"examples": [
5
],
"type": "integer",
"minimum": 0.0
},
"last_tagged_uri": {
"description": "The URI for the last tagged object for this type of resource.",
"examples": [
"https://api.digitalocean.com/v2/images/7555620"
],
"type": "string"
}
}
}
]
}Fields§
§count: Option<u64>The number of tagged objects for this type of resource.
last_tagged_uri: Option<String>The URI for the last tagged object for this type of resource.
Trait Implementations§
Source§impl Clone for TagsGetResponseTagResourcesVolumes
impl Clone for TagsGetResponseTagResourcesVolumes
Source§fn clone(&self) -> TagsGetResponseTagResourcesVolumes
fn clone(&self) -> TagsGetResponseTagResourcesVolumes
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 TagsGetResponseTagResourcesVolumes
impl<'de> Deserialize<'de> for TagsGetResponseTagResourcesVolumes
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<&TagsGetResponseTagResourcesVolumes> for TagsGetResponseTagResourcesVolumes
impl From<&TagsGetResponseTagResourcesVolumes> for TagsGetResponseTagResourcesVolumes
Source§fn from(value: &TagsGetResponseTagResourcesVolumes) -> Self
fn from(value: &TagsGetResponseTagResourcesVolumes) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TagsGetResponseTagResourcesVolumes
impl RefUnwindSafe for TagsGetResponseTagResourcesVolumes
impl Send for TagsGetResponseTagResourcesVolumes
impl Sync for TagsGetResponseTagResourcesVolumes
impl Unpin for TagsGetResponseTagResourcesVolumes
impl UnsafeUnpin for TagsGetResponseTagResourcesVolumes
impl UnwindSafe for TagsGetResponseTagResourcesVolumes
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