Enum gerber_types::GerberError []

pub enum GerberError {
    ConversionError(String),
    CoordinateFormatError(String),
    RangeError(String),
    MissingDataError(String),
    IoError(IoError),
}

Variants

Conversion between two types failed

Bad coordinate format

A value is out of range

Required data is missing

I/O error during code generation

Trait Implementations

impl Debug for GerberError
[src]

Formats the value using the given formatter.

impl Display for GerberError

Formats the value using the given formatter. Read more

impl Error for GerberError

A short description of the error. Read more

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

impl From<IoError> for GerberError

Performs the conversion.