pub struct SnapshotErrorMessage {
pub failure_code: Option<String>,
pub failure_reason: Option<String>,
pub snapshot_cluster_identifier: Option<String>,
pub snapshot_identifier: Option<String>,
}
Expand description
Describes the errors returned by a snapshot.
Fields§
§failure_code: Option<String>
The failure code for the error.
failure_reason: Option<String>
The text message describing the error.
snapshot_cluster_identifier: Option<String>
A unique identifier for the cluster.
snapshot_identifier: Option<String>
A unique identifier for the snapshot returning the error.
Trait Implementations§
Source§impl Clone for SnapshotErrorMessage
impl Clone for SnapshotErrorMessage
Source§fn clone(&self) -> SnapshotErrorMessage
fn clone(&self) -> SnapshotErrorMessage
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 SnapshotErrorMessage
impl Debug for SnapshotErrorMessage
Source§impl Default for SnapshotErrorMessage
impl Default for SnapshotErrorMessage
Source§fn default() -> SnapshotErrorMessage
fn default() -> SnapshotErrorMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for SnapshotErrorMessage
impl PartialEq for SnapshotErrorMessage
impl StructuralPartialEq for SnapshotErrorMessage
Auto Trait Implementations§
impl Freeze for SnapshotErrorMessage
impl RefUnwindSafe for SnapshotErrorMessage
impl Send for SnapshotErrorMessage
impl Sync for SnapshotErrorMessage
impl Unpin for SnapshotErrorMessage
impl UnwindSafe for SnapshotErrorMessage
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