pub type ElementResult<T> = Result<T, JsValue>;
Result type for DOM operations, carrying a JsValue error on failure.
JsValue
pub enum ElementResult<T> { Ok(T), Err(JsValue), }
Contains the success value
Contains the error value