Enum honestintervals::interval::ParseIntervalError [] [src]

pub enum ParseIntervalError {
    MissingOpeningBracket,
    MissingClosingBracket,
    InvalidNumberOfBounds,
    BoundsParseError,
    InvalidBounds,
}

Interval parsing error enum.

Variants

The first character of the strict is anything other than '<'.

The first character of the strict is anything other than '>'.

There are zero, one or more than two bounds between brackets.

There was an error while parsing a bound.

Bounds do not satisfy interval criteria. See interval::Interval::new for details.

Trait Implementations

impl Debug for ParseIntervalError
[src]

Formats the value using the given formatter.