pub struct ErrorDetails {
pub message: String,
pub status_code: u16,
pub error_code: Option<String>,
pub request_id: Option<String>,
pub details: Option<Value>,
pub retry_after_seconds: Option<f64>,
pub raw_body: String,
}Expand description
Details carried by every server-derived error variant.
Fields§
§message: String§status_code: u16§error_code: Option<String>Raw code/type string from the error payload.
request_id: Option<String>request_id captured from shape-B error payloads.
details: Option<Value>error.details captured from shape-B error payloads
(e.g. binding_cap on budget errors).
retry_after_seconds: Option<f64>Value of the Retry-After header, if present.
raw_body: StringTrait Implementations§
Source§impl Clone for ErrorDetails
impl Clone for ErrorDetails
Source§fn clone(&self) -> ErrorDetails
fn clone(&self) -> ErrorDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ErrorDetails
impl Debug for ErrorDetails
Source§impl Default for ErrorDetails
impl Default for ErrorDetails
Source§fn default() -> ErrorDetails
fn default() -> ErrorDetails
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ErrorDetails
impl RefUnwindSafe for ErrorDetails
impl Send for ErrorDetails
impl Sync for ErrorDetails
impl Unpin for ErrorDetails
impl UnsafeUnpin for ErrorDetails
impl UnwindSafe for ErrorDetails
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