pub enum JupiterClientError {
RequestError(Error),
HeaderError(InvalidHeaderValue),
ApiError(String, StatusCode),
DeserializationError(String),
}Variants§
RequestError(Error)
HeaderError(InvalidHeaderValue)
ApiError(String, StatusCode)
DeserializationError(String)
Trait Implementations§
Source§impl Debug for JupiterClientError
impl Debug for JupiterClientError
Source§impl Display for JupiterClientError
impl Display for JupiterClientError
Source§impl Error for JupiterClientError
impl Error for JupiterClientError
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 JupiterClientError
impl From<Error> for JupiterClientError
Source§impl From<InvalidHeaderValue> for JupiterClientError
impl From<InvalidHeaderValue> for JupiterClientError
Source§fn from(source: InvalidHeaderValue) -> Self
fn from(source: InvalidHeaderValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for JupiterClientError
impl !UnwindSafe for JupiterClientError
impl Freeze for JupiterClientError
impl Send for JupiterClientError
impl Sync for JupiterClientError
impl Unpin for JupiterClientError
impl UnsafeUnpin for JupiterClientError
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