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