pub enum Error {
Show 16 variants
InternalServerError(String),
NotFound(String),
BadRequest(String),
Unauthorized(String),
Forbidden(String),
Conflict(String),
Validation(String),
RateLimited(String),
ServiceUnavailable(String),
MethodNotAllowed(String),
Hyper(Error),
Io(Error),
SerdeJson(Error),
SerdeUrlEncoded(Error),
Http(Error),
Utf8(Utf8Error),
}Variants§
InternalServerError(String)
NotFound(String)
BadRequest(String)
Forbidden(String)
Conflict(String)
Validation(String)
RateLimited(String)
MethodNotAllowed(String)
Hyper(Error)
Io(Error)
SerdeJson(Error)
SerdeUrlEncoded(Error)
Http(Error)
Utf8(Utf8Error)
Implementations§
Source§impl Error
impl Error
Sourcepub fn status_code(&self) -> StatusCode
pub fn status_code(&self) -> StatusCode
Get the HTTP status code for this error
Sourcepub fn is_client_error(&self) -> bool
pub fn is_client_error(&self) -> bool
Check if this is a client error (4xx status code) These errors are expected and should be logged at debug/trace level
Sourcepub fn is_server_error(&self) -> bool
pub fn is_server_error(&self) -> bool
Check if this is a server error (5xx status code) These errors are unexpected and should be logged at error level
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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 OxiditeResponse
impl From<Error> for OxiditeResponse
Auto Trait Implementations§
impl !RefUnwindSafe for Error
impl !UnwindSafe for Error
impl Freeze for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
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