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