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