Enum rustiful::QueryStringParseError [] [src]

pub enum QueryStringParseError {
    EmptyKey(String),
    EmptyValue(String),
    InvalidParam(String),
    InvalidKeyParam(String),
    InvalidValue(String),
    EmptyFieldsetKey(String),
    EmptyFieldsetValue(String),
    ParseError(String),
    DuplicateSortKey(String),
    UnImplementedError,
}

All types of errors that can happen when attempting to parse a query string.

Variants

Trait Implementations

impl Debug for QueryStringParseError
[src]

Formats the value using the given formatter.

impl PartialEq for QueryStringParseError
[src]

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

This method tests for !=.

impl Eq for QueryStringParseError
[src]

impl Display for QueryStringParseError
[src]

Formats the value using the given formatter. Read more

impl Error for QueryStringParseError
[src]

A short description of the error. Read more

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