pub struct RejectionError {
pub error_code: String,
pub error_message: String,
pub details: Option<Value>,
}Expand description
Rejection error response
Fields§
§error_code: String§error_message: String§details: Option<Value>Trait Implementations§
Source§impl Clone for RejectionError
impl Clone for RejectionError
Source§fn clone(&self) -> RejectionError
fn clone(&self) -> RejectionError
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 RejectionError
impl Debug for RejectionError
Source§impl<'de> Deserialize<'de> for RejectionError
impl<'de> Deserialize<'de> for RejectionError
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 RejectionError
impl RefUnwindSafe for RejectionError
impl Send for RejectionError
impl Sync for RejectionError
impl Unpin for RejectionError
impl UnsafeUnpin for RejectionError
impl UnwindSafe for RejectionError
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