Enum mysql::UrlError [] [src]

pub enum UrlError {
    ParseError(ParseError),
    UnsupportedScheme(String),
    FeatureRequired(StringString),
    InvalidValue(StringString),
    UnknownParameter(String),
    BadUrl,
}

Variants

(feature_name, parameter_name)

(feature_name, value)

Trait Implementations

impl Eq for UrlError
[src]

impl PartialEq for UrlError
[src]

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

This method tests for !=.

impl Clone for UrlError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for UrlError
[src]

A short description of the error. Read more

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

impl Display for UrlError
[src]

Formats the value using the given formatter.

impl Debug for UrlError
[src]

Formats the value using the given formatter.

impl From<ParseError> for UrlError
[src]

Performs the conversion.