pub trait OptimisticHtmlInputElement {
// Required methods
fn form(&self) -> Option<HtmlFormElement>;
fn checked(&self) -> bool;
}
Expand description
Support working with web_sys::HtmlInputElement
Required Methods§
Sourcefn form(&self) -> Option<HtmlFormElement>
fn form(&self) -> Option<HtmlFormElement>
Get the web_sys::HtmlFormElement
of an input.
Sourcefn checked(&self) -> bool
fn checked(&self) -> bool
Get the web_sys::HtmlInputElement::checked
state of an input.