pub enum ReqwestJsonError {
Reqwest(Error),
Json(Error),
}Variants§
Trait Implementations§
Source§impl Debug for ReqwestJsonError
impl Debug for ReqwestJsonError
Source§impl Display for ReqwestJsonError
impl Display for ReqwestJsonError
Source§impl Error for ReqwestJsonError
impl Error for ReqwestJsonError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for ReqwestJsonError
impl From<Error> for ReqwestJsonError
Auto Trait Implementations§
impl Freeze for ReqwestJsonError
impl !RefUnwindSafe for ReqwestJsonError
impl Send for ReqwestJsonError
impl Sync for ReqwestJsonError
impl Unpin for ReqwestJsonError
impl !UnwindSafe for ReqwestJsonError
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