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