Enum discord_flows::http::error::Error
source · #[non_exhaustive]pub enum Error {
UnsuccessfulRequest(ErrorResponse),
RateLimitI64F64,
RateLimitUtf8,
Url(ParseError),
InvalidWebhook,
Request(Error),
InvalidScheme,
InvalidPort,
ApplicationIdMissing,
}
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.
UnsuccessfulRequest(ErrorResponse)
When a non-successful status code was received for a request.
RateLimitI64F64
When the decoding of a ratelimit header could not be properly decoded
into an i64
or f64
.
RateLimitUtf8
When the decoding of a ratelimit header could not be properly decoded from UTF-8.
Url(ParseError)
When parsing an URL failed due to invalid input.
InvalidWebhook
When parsing a Webhook fails due to invalid input.
Request(Error)
Reqwest’s Error contain information on why sending a request failed.
InvalidScheme
When using a proxy with an invalid scheme.
InvalidPort
When using a proxy with an invalid port.
ApplicationIdMissing
When an application id was expected but missing.
Implementations§
source§impl Error
impl Error
pub async fn from_response(r: Response) -> Self
sourcepub fn is_unsuccessful_request(&self) -> bool
pub fn is_unsuccessful_request(&self) -> bool
Returns true when the error is caused by an unsuccessful request
sourcepub fn is_url_error(&self) -> bool
pub fn is_url_error(&self) -> bool
Returns true when the error is caused by the url containing invalid input
sourcepub fn status_code(&self) -> Option<StatusCode>
pub fn status_code(&self) -> Option<StatusCode>
Returns the status code if the error is an unsuccessful request
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + '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()
source§impl From<Error> for Error
impl From<Error> for Error
source§fn from(error: ReqwestError) -> Error
fn from(error: ReqwestError) -> Error
Converts to this type from the input type.
source§impl From<ErrorResponse> for Error
impl From<ErrorResponse> for Error
source§fn from(error: ErrorResponse) -> Error
fn from(error: ErrorResponse) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe 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