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