Enum uriparse::authority::InvalidAuthority[][src]

pub enum InvalidAuthority {
    FoundPath,
    InvalidHost(InvalidHost),
    InvalidPort(InvalidPort),
    InvalidUserInfo(InvalidUserInfo),
}

Variants

Trait Implementations

impl Clone for InvalidAuthority
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for InvalidAuthority
[src]

impl Debug for InvalidAuthority
[src]

Formats the value using the given formatter. Read more

impl Eq for InvalidAuthority
[src]

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

Formats the value using the given formatter. Read more

impl Error for InvalidAuthority
[src]

This method is soft-deprecated. Read more

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

impl From<!> for InvalidAuthority
[src]

Performs the conversion.

impl From<InvalidHost> for InvalidAuthority
[src]

Performs the conversion.

impl From<InvalidPort> for InvalidAuthority
[src]

Performs the conversion.

impl From<InvalidUserInfo> for InvalidAuthority
[src]

Performs the conversion.

impl From<InvalidAuthority> for InvalidURIReference
[src]

Performs the conversion.

Auto Trait Implementations