pub struct CloudSnapshotDetails {
pub name: String,
pub location: CloudSnapshotLocation,
pub sandbox_id: Option<String>,
pub digest: String,
pub size_bytes: u64,
pub manifest: Manifest,
pub labels: BTreeMap<String, String>,
pub created_at: DateTime<Utc>,
}Expand description
Fields shared by every completed cloud snapshot kind.
Fields§
§name: StringSnapshot name.
location: CloudSnapshotLocationWhere the snapshot artifact resides.
sandbox_id: Option<String>Identifier of the sandbox the snapshot was captured from, when known.
digest: StringSnapshot identity: the sha256: digest of the canonical descriptor.
size_bytes: u64Stored payload size in bytes.
manifest: ManifestCanonical snapshot descriptor.
labels: BTreeMap<String, String>User-defined labels stored on the snapshot.
created_at: DateTime<Utc>Creation timestamp.
Trait Implementations§
Source§impl Clone for CloudSnapshotDetails
impl Clone for CloudSnapshotDetails
Source§fn clone(&self) -> CloudSnapshotDetails
fn clone(&self) -> CloudSnapshotDetails
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 CloudSnapshotDetails
impl Debug for CloudSnapshotDetails
Source§impl<'de> Deserialize<'de> for CloudSnapshotDetails
impl<'de> Deserialize<'de> for CloudSnapshotDetails
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
Auto Trait Implementations§
impl Freeze for CloudSnapshotDetails
impl RefUnwindSafe for CloudSnapshotDetails
impl Send for CloudSnapshotDetails
impl Sync for CloudSnapshotDetails
impl Unpin for CloudSnapshotDetails
impl UnsafeUnpin for CloudSnapshotDetails
impl UnwindSafe for CloudSnapshotDetails
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