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