pub type JsResult<T> = Result<T, JsError>;
Wrapper type representing a result that can result in a JS runtime error
pub enum JsResult<T> { Ok(T), Err(JsError), }
Contains the success value
Contains the error value