pub struct SnapshotResponse {
pub snapshot_id: String,
pub vm_id: String,
pub state: String,
pub consistency_level_requested: Option<SnapshotConsistencyLevel>,
pub consistency_level_achieved: Option<SnapshotConsistencyLevel>,
pub name: Option<String>,
pub created_at: String,
}Fields§
§snapshot_id: String§vm_id: String§state: String§consistency_level_requested: Option<SnapshotConsistencyLevel>§consistency_level_achieved: Option<SnapshotConsistencyLevel>§name: Option<String>§created_at: StringTrait Implementations§
Source§impl Clone for SnapshotResponse
impl Clone for SnapshotResponse
Source§fn clone(&self) -> SnapshotResponse
fn clone(&self) -> SnapshotResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 SnapshotResponse
impl Debug for SnapshotResponse
Source§impl<'de> Deserialize<'de> for SnapshotResponse
impl<'de> Deserialize<'de> for SnapshotResponse
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 SnapshotResponse
impl RefUnwindSafe for SnapshotResponse
impl Send for SnapshotResponse
impl Sync for SnapshotResponse
impl Unpin for SnapshotResponse
impl UnsafeUnpin for SnapshotResponse
impl UnwindSafe for SnapshotResponse
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