Enum actix_web::error::UrlGenerationError
source · #[non_exhaustive]pub enum UrlGenerationError {
ResourceNotFound,
NotEnoughElements,
ParseError(ParseError),
}
Expand description
Errors which can occur when attempting to generate resource uri.
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.
ResourceNotFound
Resource not found.
NotEnoughElements
Not all URL parameters covered.
ParseError(ParseError)
URL parse error.
Trait Implementations§
source§impl Debug for UrlGenerationError
impl Debug for UrlGenerationError
source§impl Display for UrlGenerationError
impl Display for UrlGenerationError
source§impl Error for UrlGenerationError
impl Error for UrlGenerationError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + '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<ParseError> for UrlGenerationError
impl From<ParseError> for UrlGenerationError
source§fn from(original: UrlParseError) -> UrlGenerationError
fn from(original: UrlParseError) -> UrlGenerationError
Converts to this type from the input type.
source§impl PartialEq for UrlGenerationError
impl PartialEq for UrlGenerationError
source§fn eq(&self, other: &UrlGenerationError) -> bool
fn eq(&self, other: &UrlGenerationError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl ResponseError for UrlGenerationError
impl ResponseError for UrlGenerationError
source§fn status_code(&self) -> StatusCode
fn status_code(&self) -> StatusCode
Returns appropriate status code for error. Read more
source§fn error_response(&self) -> HttpResponse<BoxBody>
fn error_response(&self) -> HttpResponse<BoxBody>
Creates full response for error. Read more
impl Eq for UrlGenerationError
impl StructuralPartialEq for UrlGenerationError
Auto Trait Implementations§
impl Freeze for UrlGenerationError
impl RefUnwindSafe for UrlGenerationError
impl Send for UrlGenerationError
impl Sync for UrlGenerationError
impl Unpin for UrlGenerationError
impl UnwindSafe for UrlGenerationError
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.