pub type StlResult<T> = Result<T, StlError>;
Result type for .stl file operations
pub enum StlResult<T> { Ok(T), Err(StlError), }
Contains the success value
Contains the error value