pub type Result<T> = Result<T, LercError>;
A specialized Result type for LERC operations.
Result
pub enum Result<T> { Ok(T), Err(LercError), }
Contains the success value
Contains the error value