pub struct ErrorResponseStatus {
pub code: u32,
pub message: String,
pub details: Option<Vec<Value>>,
pub status: Option<String>,
pub errors: Option<Vec<Value>>,
}Fields§
§code: u32§message: String§details: Option<Vec<Value>>§status: Option<String>§errors: Option<Vec<Value>>Trait Implementations§
Source§impl Clone for ErrorResponseStatus
impl Clone for ErrorResponseStatus
Source§fn clone(&self) -> ErrorResponseStatus
fn clone(&self) -> ErrorResponseStatus
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 ErrorResponseStatus
impl Debug for ErrorResponseStatus
Source§impl Default for ErrorResponseStatus
impl Default for ErrorResponseStatus
Source§impl<'de> Deserialize<'de> for ErrorResponseStatus
impl<'de> Deserialize<'de> for ErrorResponseStatus
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 ErrorResponseStatus
impl RefUnwindSafe for ErrorResponseStatus
impl Send for ErrorResponseStatus
impl Sync for ErrorResponseStatus
impl Unpin for ErrorResponseStatus
impl UnwindSafe for ErrorResponseStatus
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