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.
Implementations on Foreign Types§
Source§impl OptimisticHtmlInputElement for Node
impl OptimisticHtmlInputElement for Node
Source§impl OptimisticHtmlInputElement for NodeRef
Available on crate feature yew only.
impl OptimisticHtmlInputElement for NodeRef
Available on crate feature
yew only.