pub type JreResult<T> = Result<T, JreError>;
Type alias for JRE operations results
pub enum JreResult<T> { Ok(T), Err(JreError), }
Contains the success value
Contains the error value