pub struct ErrorDetails {
pub code: ErrorCode,
pub message: String,
pub is_retryable: bool,
pub retry_after_ms: Option<u64>,
pub details: Option<HashMap<String, Value>>,
}Expand description
Structured error details
Fields§
§code: ErrorCode§message: String§is_retryable: bool§retry_after_ms: Option<u64>§details: Option<HashMap<String, Value>>Implementations§
Source§impl ErrorDetails
impl ErrorDetails
pub fn new(code: ErrorCode, message: impl Into<String>) -> Self
pub fn with_details( code: ErrorCode, message: impl Into<String>, details: HashMap<String, Value>, ) -> Self
pub fn with_retry_after( code: ErrorCode, message: impl Into<String>, retry_after_ms: u64, ) -> Self
Trait 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 · 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<'de> Deserialize<'de> for ErrorDetails
impl<'de> Deserialize<'de> for ErrorDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. 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