Enum simple_selectors::ParseError [] [src]

pub enum ParseError {
    EmptySelector,
    InvalidKey(usize),
    InvalidOperator(usize),
    ExpectingEndOrComma(usize),
    ExpectingValue(usize),
    ExpectingLeftParenthesis(usize),
}

Variants

a selector must not be empty

the key at the position was invalid (i.e. some chars are not allowed within a key)

the operator at the position is invalid

the selector must either finish at the position or another expression should start separated by a comma

a value was expected at the position

expecting opening parenthesis

Trait Implementations

impl Debug for ParseError
[src]

[src]

Formats the value using the given formatter.