Struct aws_sdk_iotsitewise::types::DetailedError
source · #[non_exhaustive]pub struct DetailedError {
pub code: DetailedErrorCode,
pub message: String,
}Expand description
Contains detailed error information.
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.code: DetailedErrorCodeThe error code.
message: StringThe error message.
Implementations§
source§impl DetailedError
impl DetailedError
source§impl DetailedError
impl DetailedError
sourcepub fn builder() -> DetailedErrorBuilder
pub fn builder() -> DetailedErrorBuilder
Creates a new builder-style object to manufacture DetailedError.
Trait Implementations§
source§impl Clone for DetailedError
impl Clone for DetailedError
source§fn clone(&self) -> DetailedError
fn clone(&self) -> DetailedError
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 DetailedError
impl Debug for DetailedError
source§impl PartialEq for DetailedError
impl PartialEq for DetailedError
source§fn eq(&self, other: &DetailedError) -> bool
fn eq(&self, other: &DetailedError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DetailedError
Auto Trait Implementations§
impl RefUnwindSafe for DetailedError
impl Send for DetailedError
impl Sync for DetailedError
impl Unpin for DetailedError
impl UnwindSafe for DetailedError
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.