pub type EstResult<T> = Result<T, EstError>;
Result type for EST operations.
pub enum EstResult<T> { Ok(T), Err(EstError), }
Contains the success value
Contains the error value