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