pub type EncResult<T> = Result<T, EncError>;
pub enum EncResult<T> { Ok(T), Err(EncError), }
Contains the success value
Contains the error value