pub type GerberResult<T> = Result<T, GerberError>;
pub enum GerberResult<T> { Ok(T), Err(GerberError), }
Contains the success value
Contains the error value