Struct aws_sdk_fsx::types::DataRepositoryFailureDetails
source · #[non_exhaustive]pub struct DataRepositoryFailureDetails {
pub message: Option<String>,
}Expand description
Provides detailed information about the data repository if its Lifecycle is set to MISCONFIGURED or FAILED.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.message: Option<String>A detailed error message.
Implementations§
source§impl DataRepositoryFailureDetails
impl DataRepositoryFailureDetails
sourcepub fn builder() -> DataRepositoryFailureDetailsBuilder
pub fn builder() -> DataRepositoryFailureDetailsBuilder
Creates a new builder-style object to manufacture DataRepositoryFailureDetails.
Trait Implementations§
source§impl Clone for DataRepositoryFailureDetails
impl Clone for DataRepositoryFailureDetails
source§fn clone(&self) -> DataRepositoryFailureDetails
fn clone(&self) -> DataRepositoryFailureDetails
Returns a copy 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 DataRepositoryFailureDetails
impl Debug for DataRepositoryFailureDetails
source§impl PartialEq<DataRepositoryFailureDetails> for DataRepositoryFailureDetails
impl PartialEq<DataRepositoryFailureDetails> for DataRepositoryFailureDetails
source§fn eq(&self, other: &DataRepositoryFailureDetails) -> bool
fn eq(&self, other: &DataRepositoryFailureDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataRepositoryFailureDetails
Auto Trait Implementations§
impl RefUnwindSafe for DataRepositoryFailureDetails
impl Send for DataRepositoryFailureDetails
impl Sync for DataRepositoryFailureDetails
impl Unpin for DataRepositoryFailureDetails
impl UnwindSafe for DataRepositoryFailureDetails
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