Enum dtparse::ParseInternalError[][src]

pub enum ParseInternalError {
    YMDEarlyResolve,
    YMDValueUnset(Vec<YMDLabel>),
    ParseIndexError,
    InvalidDecimal,
    InvalidInteger,
    ValueError(String),
}

Variants

Trait Implementations

impl Debug for ParseInternalError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ParseInternalError
[src]

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

This method tests for !=.

impl From<DecimalError> for ParseInternalError
[src]

Performs the conversion.

impl From<ParseIntError> for ParseInternalError
[src]

Performs the conversion.

impl From<ParseInternalError> for ParseError
[src]

Performs the conversion.

Auto Trait Implementations