Struct aws_sdk_emr::types::ErrorDetail
source · #[non_exhaustive]pub struct ErrorDetail {
pub error_code: Option<String>,
pub error_data: Option<Vec<HashMap<String, String>>>,
pub error_message: Option<String>,
}
Expand description
A tuple that provides information about an error that caused a cluster to terminate.
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.error_code: Option<String>
The name or code associated with the error.
error_data: Option<Vec<HashMap<String, String>>>
A list of key value pairs that provides contextual information about why an error occured.
error_message: Option<String>
A message that describes the error.
Implementations§
source§impl ErrorDetail
impl ErrorDetail
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
The name or code associated with the error.
sourcepub fn error_data(&self) -> &[HashMap<String, String>]
pub fn error_data(&self) -> &[HashMap<String, String>]
A list of key value pairs that provides contextual information about why an error occured.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .error_data.is_none()
.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
A message that describes the error.
source§impl ErrorDetail
impl ErrorDetail
sourcepub fn builder() -> ErrorDetailBuilder
pub fn builder() -> ErrorDetailBuilder
Creates a new builder-style object to manufacture ErrorDetail
.
Trait Implementations§
source§impl Clone for ErrorDetail
impl Clone for ErrorDetail
source§fn clone(&self) -> ErrorDetail
fn clone(&self) -> ErrorDetail
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 ErrorDetail
impl Debug for ErrorDetail
source§impl PartialEq for ErrorDetail
impl PartialEq for ErrorDetail
source§fn eq(&self, other: &ErrorDetail) -> bool
fn eq(&self, other: &ErrorDetail) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ErrorDetail
Auto Trait Implementations§
impl RefUnwindSafe for ErrorDetail
impl Send for ErrorDetail
impl Sync for ErrorDetail
impl Unpin for ErrorDetail
impl UnwindSafe for ErrorDetail
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.