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