pub struct ApiErrorItem {
pub status: u16,
pub code: String,
pub cause: String,
}
Fields§
§status: u16
§code: String
§cause: String
Trait Implementations§
Source§impl Clone for ApiErrorItem
impl Clone for ApiErrorItem
Source§fn clone(&self) -> ApiErrorItem
fn clone(&self) -> ApiErrorItem
Returns a copy 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 ApiErrorItem
impl Debug for ApiErrorItem
Source§impl<'de> Deserialize<'de> for ApiErrorItem
impl<'de> Deserialize<'de> for ApiErrorItem
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
Source§impl Hash for ApiErrorItem
impl Hash for ApiErrorItem
Source§impl PartialEq for ApiErrorItem
impl PartialEq for ApiErrorItem
Source§impl Serialize for ApiErrorItem
impl Serialize for ApiErrorItem
impl Eq for ApiErrorItem
impl StructuralPartialEq for ApiErrorItem
Auto Trait Implementations§
impl Freeze for ApiErrorItem
impl RefUnwindSafe for ApiErrorItem
impl Send for ApiErrorItem
impl Sync for ApiErrorItem
impl Unpin for ApiErrorItem
impl UnwindSafe for ApiErrorItem
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