Enum uriparse::uri::InvalidURI[][src]

pub enum InvalidURI {
    CannotBeRelativeReference,
    InvalidAuthority(InvalidAuthority),
    InvalidFragment(InvalidFragment),
    InvalidPath(InvalidPath),
    InvalidQuery(InvalidQuery),
    InvalidScheme(InvalidScheme),
}

Variants

Trait Implementations

impl From<!> for InvalidURI
[src]

Performs the conversion.

impl Clone for InvalidURI
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InvalidURI
[src]

Formats the value using the given formatter. Read more

impl Eq for InvalidURI
[src]

impl Hash for InvalidURI
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for InvalidURI
[src]

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

This method tests for !=.

impl Display for InvalidURI
[src]

Formats the value using the given formatter. Read more

impl Error for InvalidURI
[src]

This method is soft-deprecated. Read more

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

impl TryFrom<InvalidURIReference> for InvalidURI
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

Auto Trait Implementations

impl Send for InvalidURI

impl Sync for InvalidURI