Enum uriparse::authority::InvalidUserInfo[][src]

pub enum InvalidUserInfo {
    InvalidCharacter,
    InvalidPercentEncoding,
}

An error representing an invalid user information component.

Variants

The user information contained an invalid character.

The user information contained an invalid percent encoding (e.g. "%ZZ").

Trait Implementations

impl From<InvalidUserInfo> for InvalidAuthority
[src]

Performs the conversion.

impl Clone for InvalidUserInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for InvalidUserInfo
[src]

impl Debug for InvalidUserInfo
[src]

Formats the value using the given formatter. Read more

impl Eq for InvalidUserInfo
[src]

impl Hash for InvalidUserInfo
[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 InvalidUserInfo
[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 InvalidUserInfo
[src]

Formats the value using the given formatter. Read more

impl Error for InvalidUserInfo
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations