pub struct SnapshotMeta {
pub name: String,
pub sandbox: String,
pub image_tag: String,
pub backend: String,
pub base_image: Option<String>,
pub vcpus: Option<u32>,
pub memory_mb: Option<u64>,
pub created_at: String,
}Expand description
Metadata for a sandbox snapshot.
Fields§
§name: String§sandbox: String§image_tag: String§backend: String§base_image: Option<String>§vcpus: Option<u32>§memory_mb: Option<u64>§created_at: StringTrait Implementations§
Source§impl Debug for SnapshotMeta
impl Debug for SnapshotMeta
Source§impl<'de> Deserialize<'de> for SnapshotMeta
impl<'de> Deserialize<'de> for SnapshotMeta
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 SnapshotMeta
impl RefUnwindSafe for SnapshotMeta
impl Send for SnapshotMeta
impl Sync for SnapshotMeta
impl Unpin for SnapshotMeta
impl UnwindSafe for SnapshotMeta
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