Enum kicad_parse_gen::SexpError [] [src]

pub enum SexpError {
    Parse(ParseError),
    Other(String),
    Io(Error),
    FromUtf8(FromUtf8Error),
    Float(ParseFloatError),
    Int(ParseIntError),
}

errors that can happen in this library

Variants

parse error

other error

IO Error

Utf8 Error parsing error

floating point parsing error

integer parsing error

Trait Implementations

impl Error for SexpError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<FromUtf8Error> for SexpError
[src]

[src]

Performs the conversion.

impl From<ParseFloatError> for SexpError
[src]

[src]

Performs the conversion.

impl From<Error> for SexpError
[src]

[src]

Performs the conversion.

impl From<ParseIntError> for SexpError
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for SexpError
[src]

[src]

Performs the conversion.

impl From<String> for SexpError
[src]

[src]

Performs the conversion.

impl Debug for SexpError
[src]

[src]

Formats the value using the given formatter.

impl Display for SexpError
[src]

[src]

Formats the value using the given formatter. Read more