Trait OptimisticHtmlInputElement

Source
pub trait OptimisticHtmlInputElement {
    // Required methods
    fn form(&self) -> Option<HtmlFormElement>;
    fn checked(&self) -> bool;
}
Expand description

Support working with web_sys::HtmlInputElement

Required Methods§

Source

fn form(&self) -> Option<HtmlFormElement>

Get the web_sys::HtmlFormElement of an input.

Source

fn checked(&self) -> bool

Get the web_sys::HtmlInputElement::checked state of an input.

Implementations on Foreign Types§

Source§

impl OptimisticHtmlInputElement for Node

Source§

impl OptimisticHtmlInputElement for NodeRef

Implementors§