pub enum ErrorKind {
IO(Error),
Transport(Error),
AuthorizationError,
ServerError(String),
DeserializationError,
NotFoundError,
// some variants omitted
}
Expand description
The kind of an error.
Variants
IO(Error)
Transport(Error)
AuthorizationError
Indicates that the provided API key was refused by the DeepL server.
ServerError(String)
An error occurred on the server side when processing a request. If possible, details will be provided in the error message.
DeserializationError
An error occurred on the client side when deserializing the response data.
NotFoundError
Resource was not found
Implementations
sourceimpl ErrorKind
impl ErrorKind
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
A string describing the error kind.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl !UnwindSafe for ErrorKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more