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