Enum agnes::error::ParseError [] [src]

pub enum ParseError {
    Int(ParseIntError),
    Bool(ParseBoolError),
    Float(ParseFloatError),
}

Error parsing data type from string.

Variants

Integer

Boolean

Floating-point

Trait Implementations

impl Debug for ParseError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for ParseError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for ParseError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<ParseIntError> for ParseError
[src]

[src]

Performs the conversion.

impl From<ParseFloatError> for ParseError
[src]

[src]

Performs the conversion.

impl From<ParseBoolError> for ParseError
[src]

[src]

Performs the conversion.

impl From<ParseError> for AgnesError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for ParseError

impl Sync for ParseError