pub struct HttpErrorInner {
pub status_code: u16,
pub error: String,
pub message: String,
}Fields§
§status_code: u16§error: String§message: StringTrait Implementations§
Source§impl Debug for HttpErrorInner
impl Debug for HttpErrorInner
Source§impl<'de> Deserialize<'de> for HttpErrorInner
impl<'de> Deserialize<'de> for HttpErrorInner
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 HttpErrorInner
impl RefUnwindSafe for HttpErrorInner
impl Send for HttpErrorInner
impl Sync for HttpErrorInner
impl Unpin for HttpErrorInner
impl UnwindSafe for HttpErrorInner
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