pub enum ApiError<T> {
Api(T),
Client(Error),
}
Expand description
An error returned from an api request.
Variants§
Trait Implementations§
§impl<T> Error for ApiError<T>where
ApiError<T>: Debug + Display,
impl<T> Error for ApiError<T>where ApiError<T>: Debug + Display,
§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl<T> !RefUnwindSafe for ApiError<T>
impl<T> Send for ApiError<T>where T: Send,
impl<T> Sync for ApiError<T>where T: Sync,
impl<T> Unpin for ApiError<T>where T: Unpin,
impl<T> !UnwindSafe for ApiError<T>
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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