pub struct ErrorDetail {
pub code: String,
pub message: String,
pub request_id: Option<String>,
}Expand description
Detailed error information.
Fields§
§code: StringError code.
message: StringHuman-readable error message.
request_id: Option<String>Request ID for correlation.
Trait Implementations§
Source§impl Debug for ErrorDetail
impl Debug for ErrorDetail
Auto Trait Implementations§
impl Freeze for ErrorDetail
impl RefUnwindSafe for ErrorDetail
impl Send for ErrorDetail
impl Sync for ErrorDetail
impl Unpin for ErrorDetail
impl UnwindSafe for ErrorDetail
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more