Struct aws_sdk_appfabric::types::TaskError
source · #[non_exhaustive]pub struct TaskError {
pub error_code: Option<String>,
pub error_message: Option<String>,
}
Expand description
Contains information about an error returned from a user access task.
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 code of the error.
error_message: Option<String>
The message of the error.
Implementations§
Trait Implementations§
source§impl PartialEq<TaskError> for TaskError
impl PartialEq<TaskError> for TaskError
impl StructuralPartialEq for TaskError
Auto Trait Implementations§
impl RefUnwindSafe for TaskError
impl Send for TaskError
impl Sync for TaskError
impl Unpin for TaskError
impl UnwindSafe for TaskError
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