#[non_exhaustive]pub enum ApiError<E>{
Client {
source: E,
},
UrlParse {
source: ParseError,
},
Body {
source: BodyError,
},
Json {
source: Error,
},
Server {
msg: String,
},
ServerService {
status: StatusCode,
data: Vec<u8>,
},
DataType {
source: Error,
typename: &'static str,
},
}
Expand description
Errors which may occur when using API endpoints.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Client
The client encountered an error.
Fields
§
source: E
The client error.
UrlParse
The URL failed to parse.
Fields
§
source: ParseError
The source of the error.
Body
Body data could not be created.
Json
JSON deserialization from API failed.
Server
Server returned an error message.
ServerService
Server returned an error without JSON information.
Fields
§
status: StatusCode
The status code for the return.
DataType
Failed to parse an expected data type from JSON.
Implementations§
Trait Implementations§
Source§impl<E> Error for ApiError<E>
impl<E> Error for ApiError<E>
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()
Auto Trait Implementations§
impl<E> Freeze for ApiError<E>where
E: Freeze,
impl<E> !RefUnwindSafe for ApiError<E>
impl<E> Send for ApiError<E>
impl<E> Sync for ApiError<E>
impl<E> Unpin for ApiError<E>where
E: Unpin,
impl<E> !UnwindSafe for ApiError<E>
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