Enum iri_string::relative::RelativeIriParseError [] [src]

pub enum RelativeIriParseError {
    SingleColon,
    FirstComponentHasColon,
    Url(UrlParseError),
}

Relative URL parse error.

Variants

Got a single colon character.

Has colon at first component.

Other URL parsing error.

Trait Implementations

impl Debug for RelativeIriParseError
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RelativeIriParseError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for RelativeIriParseError
[src]

impl PartialEq for RelativeIriParseError
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for RelativeIriParseError
[src]

impl Error for RelativeIriParseError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for RelativeIriParseError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<UrlParseError> for RelativeIriParseError
[src]

[src]

Performs the conversion.

Auto Trait Implementations