pub type Result<T> = Result<T, DxfError>;
Result type alias for acadrust operations
pub enum Result<T> { Ok(T), Err(DxfError), }
Contains the success value
Contains the error value