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