pub enum LatitudeErrorCodes {
UnexpectedError,
RateLimitError,
UnauthorizedError,
ForbiddenError,
BadRequestError,
NotFoundError,
ConflictError,
UnprocessableEntityError,
}
Expand description
Latitude API-specific error codes.
Variants§
UnexpectedError
An unexpected error occurred.
RateLimitError
The request was rate-limited.
The request was unauthorized.
ForbiddenError
The request was forbidden.
BadRequestError
The request was malformed or incorrect.
NotFoundError
The requested resource was not found.
ConflictError
A conflict occurred during the request.
UnprocessableEntityError
The request could not be processed.
Trait Implementations§
Source§impl Debug for LatitudeErrorCodes
impl Debug for LatitudeErrorCodes
Auto Trait Implementations§
impl Freeze for LatitudeErrorCodes
impl RefUnwindSafe for LatitudeErrorCodes
impl Send for LatitudeErrorCodes
impl Sync for LatitudeErrorCodes
impl Unpin for LatitudeErrorCodes
impl UnwindSafe for LatitudeErrorCodes
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