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