pub struct EnableFastSnapshotRestoreErrorItem {
pub fast_snapshot_restore_state_errors: Option<Vec<EnableFastSnapshotRestoreStateErrorItem>>,
pub snapshot_id: Option<String>,
}Expand description
Contains information about the errors that occurred when enabling fast snapshot restores.
Fields§
§fast_snapshot_restore_state_errors: Option<Vec<EnableFastSnapshotRestoreStateErrorItem>>The errors.
snapshot_id: Option<String>The ID of the snapshot.
Trait Implementations§
Source§impl Clone for EnableFastSnapshotRestoreErrorItem
impl Clone for EnableFastSnapshotRestoreErrorItem
Source§fn clone(&self) -> EnableFastSnapshotRestoreErrorItem
fn clone(&self) -> EnableFastSnapshotRestoreErrorItem
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 Default for EnableFastSnapshotRestoreErrorItem
impl Default for EnableFastSnapshotRestoreErrorItem
Source§fn default() -> EnableFastSnapshotRestoreErrorItem
fn default() -> EnableFastSnapshotRestoreErrorItem
Returns the “default value” for a type. Read more
Source§impl PartialEq for EnableFastSnapshotRestoreErrorItem
impl PartialEq for EnableFastSnapshotRestoreErrorItem
Source§fn eq(&self, other: &EnableFastSnapshotRestoreErrorItem) -> bool
fn eq(&self, other: &EnableFastSnapshotRestoreErrorItem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EnableFastSnapshotRestoreErrorItem
Auto Trait Implementations§
impl Freeze for EnableFastSnapshotRestoreErrorItem
impl RefUnwindSafe for EnableFastSnapshotRestoreErrorItem
impl Send for EnableFastSnapshotRestoreErrorItem
impl Sync for EnableFastSnapshotRestoreErrorItem
impl Unpin for EnableFastSnapshotRestoreErrorItem
impl UnwindSafe for EnableFastSnapshotRestoreErrorItem
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