pub type Result<T, E = LeoError> = Result<T, E>;
A global result type for all Leo crates, that defaults the errors to be a LeoError.
enum Result<T, E = LeoError> { Ok(T), Err(E), }
Contains the success value
Contains the error value