pub trait HtmlInputElement {
    // Required method
    fn form(&self) -> Option<HtmlFormElement>;
}
Expand description

Support working with web_sys::HtmlInputElement

Required Methods§

source

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

Get the web_sys::HtmlFormElement of an input.

Implementations on Foreign Types§

source§

impl HtmlInputElement for NodeRef

Implementors§