Enum uriparse::fragment::InvalidFragment[][src]

pub enum InvalidFragment {
    InvalidCharacter,
    InvalidPercentEncoding,
}

An error representing an invalid fragment.

Variants

The fragment contained an invalid character.

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

Trait Implementations

impl Clone for InvalidFragment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for InvalidFragment
[src]

impl Debug for InvalidFragment
[src]

Formats the value using the given formatter. Read more

impl Eq for InvalidFragment
[src]

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

Formats the value using the given formatter. Read more

impl Error for InvalidFragment
[src]

This method is soft-deprecated. Read more

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

impl From<!> for InvalidFragment
[src]

Performs the conversion.

impl From<InvalidFragment> for InvalidURIReference
[src]

Performs the conversion.

Auto Trait Implementations