Enum kicad_parse_gen::error::KicadError [] [src]

pub enum KicadError {
    Parse(String),
    Other(String),
    Io(Error),
    EnvVar(VarError),
    ShellExpand(LookupError<VarError>),
    SymbolicExpression(SexpError),
}

errors that can happen in this library

Variants

parse error

other error

IO Error

env var error

shell expand lookup error

symbolic expressions error

Trait Implementations

impl Debug for KicadError
[src]

[src]

Formats the value using the given formatter.

impl From<SexpError> for KicadError
[src]

[src]

Performs the conversion.

impl From<LookupError<VarError>> for KicadError
[src]

[src]

Performs the conversion.

impl From<Error> for KicadError
[src]

[src]

Performs the conversion.

impl From<String> for KicadError
[src]

[src]

Performs the conversion.

impl Error for KicadError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl Display for KicadError
[src]

[src]

Formats the value using the given formatter. Read more