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