Enum actix_web::error::UrlParseError[][src]

pub enum UrlParseError {
    EmptyHost,
    IdnaError,
    InvalidPort,
    InvalidIpv4Address,
    InvalidIpv6Address,
    InvalidDomainCharacter,
    RelativeUrlWithoutBase,
    RelativeUrlWithCannotBeABaseBase,
    SetHostOnCannotBeABaseUrl,
    Overflow,
}
[]

Errors that can occur during parsing.

Variants

Trait Implementations

impl Display for ParseError
[src]
[+]

[]

Formats the value using the given formatter. Read more

impl From<Errors> for ParseError
[src]
[+]

[]

Performs the conversion.

impl Copy for ParseError
[src]

impl Eq for ParseError
[src]

impl Error for ParseError
[src]
[+]

[]

This method is soft-deprecated. Read more

[]

The lower-level cause of this error, if any. Read more

impl PartialEq<ParseError> for ParseError
[src]
[+]

[]

This method tests for self and other values to be equal, and is used by ==. Read more

[]

This method tests for !=.

impl Clone for ParseError
[src]
[+]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more

impl Debug for ParseError
[src]
[+]

[]

Formats the value using the given formatter. Read more

impl From<ParseError> for ProtoError
[+]

[]

Performs the conversion.

impl ResponseError for UrlParseError
[src]
[+]

InternalServerError for UrlParseError

[]

Create response for error Read more

impl From<UrlParseError> for UrlGenerationError
[src]
[+]

[]

Performs the conversion.

impl From<UrlParseError> for ClientError
[src]
[+]

[]

Performs the conversion.

Auto Trait Implementations

impl Send for ParseError

impl Sync for ParseError