Enum base_url::BaseUrlError[][src]

pub enum BaseUrlError {
    CannotBeBase,
    ParseError(ParseError),
}

Variants

If the Url supplied cannot be a base this error is returned

If a supplied &str cannot be parsed by the parser in the main Url crate this error is returned

Trait Implementations

impl Debug for BaseUrlError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations