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