pub type LasResult<T> = Result<T, LasError>;
Result type for .las file operation
pub enum LasResult<T> { Ok(T), Err(LasError), }
Contains the success value
Contains the error value