pub struct TagsListResponseTagsItemResourcesVolumeSnapshots {
pub count: Option<u64>,
pub last_tagged_uri: Option<String>,
}Expand description
TagsListResponseTagsItemResourcesVolumeSnapshots
JSON schema
{
"allOf": [
{
"description": "Volume Snapshots that are tagged with the specified tag.<br>Requires `block_storage_snapshot: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 TagsListResponseTagsItemResourcesVolumeSnapshots
impl Clone for TagsListResponseTagsItemResourcesVolumeSnapshots
Source§fn clone(&self) -> TagsListResponseTagsItemResourcesVolumeSnapshots
fn clone(&self) -> TagsListResponseTagsItemResourcesVolumeSnapshots
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 TagsListResponseTagsItemResourcesVolumeSnapshots
impl<'de> Deserialize<'de> for TagsListResponseTagsItemResourcesVolumeSnapshots
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<&TagsListResponseTagsItemResourcesVolumeSnapshots> for TagsListResponseTagsItemResourcesVolumeSnapshots
impl From<&TagsListResponseTagsItemResourcesVolumeSnapshots> for TagsListResponseTagsItemResourcesVolumeSnapshots
Source§fn from(value: &TagsListResponseTagsItemResourcesVolumeSnapshots) -> Self
fn from(value: &TagsListResponseTagsItemResourcesVolumeSnapshots) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TagsListResponseTagsItemResourcesVolumeSnapshots
impl RefUnwindSafe for TagsListResponseTagsItemResourcesVolumeSnapshots
impl Send for TagsListResponseTagsItemResourcesVolumeSnapshots
impl Sync for TagsListResponseTagsItemResourcesVolumeSnapshots
impl Unpin for TagsListResponseTagsItemResourcesVolumeSnapshots
impl UnsafeUnpin for TagsListResponseTagsItemResourcesVolumeSnapshots
impl UnwindSafe for TagsListResponseTagsItemResourcesVolumeSnapshots
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