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