[][src]Struct web_sys::HtmlElement

#[repr(transparent)]pub struct HtmlElement { /* fields omitted */ }

The HtmlElement class.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

Methods

impl HtmlElement[src]

pub fn title(&self) -> String[src]

Getter for the title field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_title(&self, value: &str)[src]

Setter for the title field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn lang(&self) -> String[src]

Getter for the lang field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_lang(&self, value: &str)[src]

Setter for the lang field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn dir(&self) -> String[src]

Getter for the dir field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_dir(&self, value: &str)[src]

Setter for the dir field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn dataset(&self) -> DomStringMap[src]

Getter for the dataset field of this object.

MDN Documentation

This API requires the following crate features to be activated: DomStringMap, HtmlElement

impl HtmlElement[src]

pub fn inner_text(&self) -> String[src]

Getter for the innerText field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_inner_text(&self, value: &str)[src]

Setter for the innerText field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn hidden(&self) -> bool[src]

Getter for the hidden field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_hidden(&self, value: bool)[src]

Setter for the hidden field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn tab_index(&self) -> i32[src]

Getter for the tabIndex field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_tab_index(&self, value: i32)[src]

Setter for the tabIndex field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn access_key(&self) -> String[src]

Getter for the accessKey field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_access_key(&self, value: &str)[src]

Setter for the accessKey field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn access_key_label(&self) -> String[src]

Getter for the accessKeyLabel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn draggable(&self) -> bool[src]

Getter for the draggable field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_draggable(&self, value: bool)[src]

Setter for the draggable field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn content_editable(&self) -> String[src]

Getter for the contentEditable field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_content_editable(&self, value: &str)[src]

Setter for the contentEditable field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn is_content_editable(&self) -> bool[src]

Getter for the isContentEditable field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn spellcheck(&self) -> bool[src]

Getter for the spellcheck field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_spellcheck(&self, value: bool)[src]

Setter for the spellcheck field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn style(&self) -> CssStyleDeclaration[src]

Getter for the style field of this object.

MDN Documentation

This API requires the following crate features to be activated: CssStyleDeclaration, HtmlElement

impl HtmlElement[src]

pub fn offset_parent(&self) -> Option<Element>[src]

Getter for the offsetParent field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn offset_top(&self) -> i32[src]

Getter for the offsetTop field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn offset_left(&self) -> i32[src]

Getter for the offsetLeft field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn offset_width(&self) -> i32[src]

Getter for the offsetWidth field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn offset_height(&self) -> i32[src]

Getter for the offsetHeight field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn oncopy(&self) -> Option<Function>[src]

Getter for the oncopy field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_oncopy(&self, value: Option<&Function>)[src]

Setter for the oncopy field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn oncut(&self) -> Option<Function>[src]

Getter for the oncut field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_oncut(&self, value: Option<&Function>)[src]

Setter for the oncut field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpaste(&self) -> Option<Function>[src]

Getter for the onpaste field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpaste(&self, value: Option<&Function>)[src]

Setter for the onpaste field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onabort(&self) -> Option<Function>[src]

Getter for the onabort field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onabort(&self, value: Option<&Function>)[src]

Setter for the onabort field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onblur(&self) -> Option<Function>[src]

Getter for the onblur field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onblur(&self, value: Option<&Function>)[src]

Setter for the onblur field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onfocus(&self) -> Option<Function>[src]

Getter for the onfocus field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onfocus(&self, value: Option<&Function>)[src]

Setter for the onfocus field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onauxclick(&self) -> Option<Function>[src]

Getter for the onauxclick field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onauxclick(&self, value: Option<&Function>)[src]

Setter for the onauxclick field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn oncanplay(&self) -> Option<Function>[src]

Getter for the oncanplay field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_oncanplay(&self, value: Option<&Function>)[src]

Setter for the oncanplay field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn oncanplaythrough(&self) -> Option<Function>[src]

Getter for the oncanplaythrough field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_oncanplaythrough(&self, value: Option<&Function>)[src]

Setter for the oncanplaythrough field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onchange(&self) -> Option<Function>[src]

Getter for the onchange field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onchange(&self, value: Option<&Function>)[src]

Setter for the onchange field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onclick(&self) -> Option<Function>[src]

Getter for the onclick field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onclick(&self, value: Option<&Function>)[src]

Setter for the onclick field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onclose(&self) -> Option<Function>[src]

Getter for the onclose field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onclose(&self, value: Option<&Function>)[src]

Setter for the onclose field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn oncontextmenu(&self) -> Option<Function>[src]

Getter for the oncontextmenu field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_oncontextmenu(&self, value: Option<&Function>)[src]

Setter for the oncontextmenu field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondblclick(&self) -> Option<Function>[src]

Getter for the ondblclick field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondblclick(&self, value: Option<&Function>)[src]

Setter for the ondblclick field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondrag(&self) -> Option<Function>[src]

Getter for the ondrag field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondrag(&self, value: Option<&Function>)[src]

Setter for the ondrag field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondragend(&self) -> Option<Function>[src]

Getter for the ondragend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondragend(&self, value: Option<&Function>)[src]

Setter for the ondragend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondragenter(&self) -> Option<Function>[src]

Getter for the ondragenter field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondragenter(&self, value: Option<&Function>)[src]

Setter for the ondragenter field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondragexit(&self) -> Option<Function>[src]

Getter for the ondragexit field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondragexit(&self, value: Option<&Function>)[src]

Setter for the ondragexit field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondragleave(&self) -> Option<Function>[src]

Getter for the ondragleave field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondragleave(&self, value: Option<&Function>)[src]

Setter for the ondragleave field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondragover(&self) -> Option<Function>[src]

Getter for the ondragover field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondragover(&self, value: Option<&Function>)[src]

Setter for the ondragover field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondragstart(&self) -> Option<Function>[src]

Getter for the ondragstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondragstart(&self, value: Option<&Function>)[src]

Setter for the ondragstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondrop(&self) -> Option<Function>[src]

Getter for the ondrop field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondrop(&self, value: Option<&Function>)[src]

Setter for the ondrop field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ondurationchange(&self) -> Option<Function>[src]

Getter for the ondurationchange field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ondurationchange(&self, value: Option<&Function>)[src]

Setter for the ondurationchange field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onemptied(&self) -> Option<Function>[src]

Getter for the onemptied field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onemptied(&self, value: Option<&Function>)[src]

Setter for the onemptied field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onended(&self) -> Option<Function>[src]

Getter for the onended field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onended(&self, value: Option<&Function>)[src]

Setter for the onended field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn oninput(&self) -> Option<Function>[src]

Getter for the oninput field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_oninput(&self, value: Option<&Function>)[src]

Setter for the oninput field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn oninvalid(&self) -> Option<Function>[src]

Getter for the oninvalid field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_oninvalid(&self, value: Option<&Function>)[src]

Setter for the oninvalid field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onkeydown(&self) -> Option<Function>[src]

Getter for the onkeydown field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onkeydown(&self, value: Option<&Function>)[src]

Setter for the onkeydown field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onkeypress(&self) -> Option<Function>[src]

Getter for the onkeypress field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onkeypress(&self, value: Option<&Function>)[src]

Setter for the onkeypress field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onkeyup(&self) -> Option<Function>[src]

Getter for the onkeyup field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onkeyup(&self, value: Option<&Function>)[src]

Setter for the onkeyup field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onload(&self) -> Option<Function>[src]

Getter for the onload field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onload(&self, value: Option<&Function>)[src]

Setter for the onload field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onloadeddata(&self) -> Option<Function>[src]

Getter for the onloadeddata field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onloadeddata(&self, value: Option<&Function>)[src]

Setter for the onloadeddata field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onloadedmetadata(&self) -> Option<Function>[src]

Getter for the onloadedmetadata field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onloadedmetadata(&self, value: Option<&Function>)[src]

Setter for the onloadedmetadata field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onloadend(&self) -> Option<Function>[src]

Getter for the onloadend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onloadend(&self, value: Option<&Function>)[src]

Setter for the onloadend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onloadstart(&self) -> Option<Function>[src]

Getter for the onloadstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onloadstart(&self, value: Option<&Function>)[src]

Setter for the onloadstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onmousedown(&self) -> Option<Function>[src]

Getter for the onmousedown field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onmousedown(&self, value: Option<&Function>)[src]

Setter for the onmousedown field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onmouseenter(&self) -> Option<Function>[src]

Getter for the onmouseenter field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onmouseenter(&self, value: Option<&Function>)[src]

Setter for the onmouseenter field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onmouseleave(&self) -> Option<Function>[src]

Getter for the onmouseleave field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onmouseleave(&self, value: Option<&Function>)[src]

Setter for the onmouseleave field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onmousemove(&self) -> Option<Function>[src]

Getter for the onmousemove field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onmousemove(&self, value: Option<&Function>)[src]

Setter for the onmousemove field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onmouseout(&self) -> Option<Function>[src]

Getter for the onmouseout field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onmouseout(&self, value: Option<&Function>)[src]

Setter for the onmouseout field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onmouseover(&self) -> Option<Function>[src]

Getter for the onmouseover field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onmouseover(&self, value: Option<&Function>)[src]

Setter for the onmouseover field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onmouseup(&self) -> Option<Function>[src]

Getter for the onmouseup field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onmouseup(&self, value: Option<&Function>)[src]

Setter for the onmouseup field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onwheel(&self) -> Option<Function>[src]

Getter for the onwheel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onwheel(&self, value: Option<&Function>)[src]

Setter for the onwheel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpause(&self) -> Option<Function>[src]

Getter for the onpause field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpause(&self, value: Option<&Function>)[src]

Setter for the onpause field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onplay(&self) -> Option<Function>[src]

Getter for the onplay field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onplay(&self, value: Option<&Function>)[src]

Setter for the onplay field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onplaying(&self) -> Option<Function>[src]

Getter for the onplaying field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onplaying(&self, value: Option<&Function>)[src]

Setter for the onplaying field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onprogress(&self) -> Option<Function>[src]

Getter for the onprogress field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onprogress(&self, value: Option<&Function>)[src]

Setter for the onprogress field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onratechange(&self) -> Option<Function>[src]

Getter for the onratechange field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onratechange(&self, value: Option<&Function>)[src]

Setter for the onratechange field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onreset(&self) -> Option<Function>[src]

Getter for the onreset field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onreset(&self, value: Option<&Function>)[src]

Setter for the onreset field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onresize(&self) -> Option<Function>[src]

Getter for the onresize field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onresize(&self, value: Option<&Function>)[src]

Setter for the onresize field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onscroll(&self) -> Option<Function>[src]

Getter for the onscroll field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onscroll(&self, value: Option<&Function>)[src]

Setter for the onscroll field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onseeked(&self) -> Option<Function>[src]

Getter for the onseeked field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onseeked(&self, value: Option<&Function>)[src]

Setter for the onseeked field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onseeking(&self) -> Option<Function>[src]

Getter for the onseeking field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onseeking(&self, value: Option<&Function>)[src]

Setter for the onseeking field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onselect(&self) -> Option<Function>[src]

Getter for the onselect field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onselect(&self, value: Option<&Function>)[src]

Setter for the onselect field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onshow(&self) -> Option<Function>[src]

Getter for the onshow field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onshow(&self, value: Option<&Function>)[src]

Setter for the onshow field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onstalled(&self) -> Option<Function>[src]

Getter for the onstalled field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onstalled(&self, value: Option<&Function>)[src]

Setter for the onstalled field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onsubmit(&self) -> Option<Function>[src]

Getter for the onsubmit field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onsubmit(&self, value: Option<&Function>)[src]

Setter for the onsubmit field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onsuspend(&self) -> Option<Function>[src]

Getter for the onsuspend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onsuspend(&self, value: Option<&Function>)[src]

Setter for the onsuspend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontimeupdate(&self) -> Option<Function>[src]

Getter for the ontimeupdate field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontimeupdate(&self, value: Option<&Function>)[src]

Setter for the ontimeupdate field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onvolumechange(&self) -> Option<Function>[src]

Getter for the onvolumechange field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onvolumechange(&self, value: Option<&Function>)[src]

Setter for the onvolumechange field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onwaiting(&self) -> Option<Function>[src]

Getter for the onwaiting field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onwaiting(&self, value: Option<&Function>)[src]

Setter for the onwaiting field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onselectstart(&self) -> Option<Function>[src]

Getter for the onselectstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onselectstart(&self, value: Option<&Function>)[src]

Setter for the onselectstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontoggle(&self) -> Option<Function>[src]

Getter for the ontoggle field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontoggle(&self, value: Option<&Function>)[src]

Setter for the ontoggle field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpointercancel(&self) -> Option<Function>[src]

Getter for the onpointercancel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpointercancel(&self, value: Option<&Function>)[src]

Setter for the onpointercancel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpointerdown(&self) -> Option<Function>[src]

Getter for the onpointerdown field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpointerdown(&self, value: Option<&Function>)[src]

Setter for the onpointerdown field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpointerup(&self) -> Option<Function>[src]

Getter for the onpointerup field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpointerup(&self, value: Option<&Function>)[src]

Setter for the onpointerup field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpointermove(&self) -> Option<Function>[src]

Getter for the onpointermove field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpointermove(&self, value: Option<&Function>)[src]

Setter for the onpointermove field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpointerout(&self) -> Option<Function>[src]

Getter for the onpointerout field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpointerout(&self, value: Option<&Function>)[src]

Setter for the onpointerout field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpointerover(&self) -> Option<Function>[src]

Getter for the onpointerover field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpointerover(&self, value: Option<&Function>)[src]

Setter for the onpointerover field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpointerenter(&self) -> Option<Function>[src]

Getter for the onpointerenter field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpointerenter(&self, value: Option<&Function>)[src]

Setter for the onpointerenter field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onpointerleave(&self) -> Option<Function>[src]

Getter for the onpointerleave field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onpointerleave(&self, value: Option<&Function>)[src]

Setter for the onpointerleave field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ongotpointercapture(&self) -> Option<Function>[src]

Getter for the ongotpointercapture field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ongotpointercapture(&self, value: Option<&Function>)[src]

Setter for the ongotpointercapture field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onlostpointercapture(&self) -> Option<Function>[src]

Getter for the onlostpointercapture field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onlostpointercapture(&self, value: Option<&Function>)[src]

Setter for the onlostpointercapture field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onanimationcancel(&self) -> Option<Function>[src]

Getter for the onanimationcancel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onanimationcancel(&self, value: Option<&Function>)[src]

Setter for the onanimationcancel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onanimationend(&self) -> Option<Function>[src]

Getter for the onanimationend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onanimationend(&self, value: Option<&Function>)[src]

Setter for the onanimationend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onanimationiteration(&self) -> Option<Function>[src]

Getter for the onanimationiteration field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onanimationiteration(&self, value: Option<&Function>)[src]

Setter for the onanimationiteration field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onanimationstart(&self) -> Option<Function>[src]

Getter for the onanimationstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onanimationstart(&self, value: Option<&Function>)[src]

Setter for the onanimationstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontransitioncancel(&self) -> Option<Function>[src]

Getter for the ontransitioncancel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontransitioncancel(&self, value: Option<&Function>)[src]

Setter for the ontransitioncancel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontransitionend(&self) -> Option<Function>[src]

Getter for the ontransitionend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontransitionend(&self, value: Option<&Function>)[src]

Setter for the ontransitionend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontransitionrun(&self) -> Option<Function>[src]

Getter for the ontransitionrun field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontransitionrun(&self, value: Option<&Function>)[src]

Setter for the ontransitionrun field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontransitionstart(&self) -> Option<Function>[src]

Getter for the ontransitionstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontransitionstart(&self, value: Option<&Function>)[src]

Setter for the ontransitionstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onwebkitanimationend(&self) -> Option<Function>[src]

Getter for the onwebkitanimationend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onwebkitanimationend(&self, value: Option<&Function>)[src]

Setter for the onwebkitanimationend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onwebkitanimationiteration(&self) -> Option<Function>[src]

Getter for the onwebkitanimationiteration field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onwebkitanimationiteration(&self, value: Option<&Function>)[src]

Setter for the onwebkitanimationiteration field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onwebkitanimationstart(&self) -> Option<Function>[src]

Getter for the onwebkitanimationstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onwebkitanimationstart(&self, value: Option<&Function>)[src]

Setter for the onwebkitanimationstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onwebkittransitionend(&self) -> Option<Function>[src]

Getter for the onwebkittransitionend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onwebkittransitionend(&self, value: Option<&Function>)[src]

Setter for the onwebkittransitionend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn onerror(&self) -> Option<Function>[src]

Getter for the onerror field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_onerror(&self, value: Option<&Function>)[src]

Setter for the onerror field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontouchstart(&self) -> Option<Function>[src]

Getter for the ontouchstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontouchstart(&self, value: Option<&Function>)[src]

Setter for the ontouchstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontouchend(&self) -> Option<Function>[src]

Getter for the ontouchend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontouchend(&self, value: Option<&Function>)[src]

Setter for the ontouchend field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontouchmove(&self) -> Option<Function>[src]

Getter for the ontouchmove field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontouchmove(&self, value: Option<&Function>)[src]

Setter for the ontouchmove field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn ontouchcancel(&self) -> Option<Function>[src]

Getter for the ontouchcancel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn set_ontouchcancel(&self, value: Option<&Function>)[src]

Setter for the ontouchcancel field of this object.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn blur(&self) -> Result<(), JsValue>[src]

The blur() method.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn click(&self)[src]

The click() method.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

impl HtmlElement[src]

pub fn focus(&self) -> Result<(), JsValue>[src]

The focus() method.

MDN Documentation

This API requires the following crate features to be activated: HtmlElement

Methods from Deref<Target = Element>

pub fn namespace_uri(&self) -> Option<String>[src]

Getter for the namespaceURI field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prefix(&self) -> Option<String>[src]

Getter for the prefix field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn local_name(&self) -> String[src]

Getter for the localName field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn tag_name(&self) -> String[src]

Getter for the tagName field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn id(&self) -> String[src]

Getter for the id field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_id(&self, value: &str)[src]

Setter for the id field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn class_name(&self) -> String[src]

Getter for the className field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_class_name(&self, value: &str)[src]

Setter for the className field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn class_list(&self) -> DomTokenList[src]

Getter for the classList field of this object.

MDN Documentation

This API requires the following crate features to be activated: DomTokenList, Element

pub fn attributes(&self) -> NamedNodeMap[src]

Getter for the attributes field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element, NamedNodeMap

pub fn scroll_top(&self) -> i32[src]

Getter for the scrollTop field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_scroll_top(&self, value: i32)[src]

Setter for the scrollTop field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_left(&self) -> i32[src]

Getter for the scrollLeft field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_scroll_left(&self, value: i32)[src]

Setter for the scrollLeft field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_width(&self) -> i32[src]

Getter for the scrollWidth field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_height(&self) -> i32[src]

Getter for the scrollHeight field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn client_top(&self) -> i32[src]

Getter for the clientTop field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn client_left(&self) -> i32[src]

Getter for the clientLeft field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn client_width(&self) -> i32[src]

Getter for the clientWidth field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn client_height(&self) -> i32[src]

Getter for the clientHeight field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn inner_html(&self) -> String[src]

Getter for the innerHTML field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_inner_html(&self, value: &str)[src]

Setter for the innerHTML field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn outer_html(&self) -> String[src]

Getter for the outerHTML field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_outer_html(&self, value: &str)[src]

Setter for the outerHTML field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn shadow_root(&self) -> Option<ShadowRoot>[src]

Getter for the shadowRoot field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element, ShadowRoot

pub fn assigned_slot(&self) -> Option<HtmlSlotElement>[src]

Getter for the assignedSlot field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element, HtmlSlotElement

pub fn slot(&self) -> String[src]

Getter for the slot field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_slot(&self, value: &str)[src]

Setter for the slot field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn previous_element_sibling(&self) -> Option<Element>[src]

Getter for the previousElementSibling field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn next_element_sibling(&self) -> Option<Element>[src]

Getter for the nextElementSibling field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn children(&self) -> HtmlCollection[src]

Getter for the children field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element, HtmlCollection

pub fn first_element_child(&self) -> Option<Element>[src]

Getter for the firstElementChild field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn last_element_child(&self) -> Option<Element>[src]

Getter for the lastElementChild field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn child_element_count(&self) -> u32[src]

Getter for the childElementCount field of this object.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn attach_shadow(
    &self,
    shadow_root_init_dict: &ShadowRootInit
) -> Result<ShadowRoot, JsValue>
[src]

The attachShadow() method.

MDN Documentation

This API requires the following crate features to be activated: Element, ShadowRoot, ShadowRootInit

pub fn closest(&self, selector: &str) -> Result<Option<Element>, JsValue>[src]

The closest() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn get_attribute(&self, name: &str) -> Option<String>[src]

The getAttribute() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn get_attribute_ns(
    &self,
    namespace: Option<&str>,
    local_name: &str
) -> Option<String>
[src]

The getAttributeNS() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn get_attribute_names(&self) -> Array[src]

The getAttributeNames() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn get_attribute_node(&self, name: &str) -> Option<Attr>[src]

The getAttributeNode() method.

MDN Documentation

This API requires the following crate features to be activated: Attr, Element

pub fn get_attribute_node_ns(
    &self,
    namespace_uri: Option<&str>,
    local_name: &str
) -> Option<Attr>
[src]

The getAttributeNodeNS() method.

MDN Documentation

This API requires the following crate features to be activated: Attr, Element

pub fn get_bounding_client_rect(&self) -> DomRect[src]

The getBoundingClientRect() method.

MDN Documentation

This API requires the following crate features to be activated: DomRect, Element

pub fn get_client_rects(&self) -> DomRectList[src]

The getClientRects() method.

MDN Documentation

This API requires the following crate features to be activated: DomRectList, Element

pub fn get_elements_by_class_name(&self, class_names: &str) -> HtmlCollection[src]

The getElementsByClassName() method.

MDN Documentation

This API requires the following crate features to be activated: Element, HtmlCollection

pub fn get_elements_by_tag_name(&self, local_name: &str) -> HtmlCollection[src]

The getElementsByTagName() method.

MDN Documentation

This API requires the following crate features to be activated: Element, HtmlCollection

pub fn get_elements_by_tag_name_ns(
    &self,
    namespace: Option<&str>,
    local_name: &str
) -> Result<HtmlCollection, JsValue>
[src]

The getElementsByTagNameNS() method.

MDN Documentation

This API requires the following crate features to be activated: Element, HtmlCollection

pub fn has_attribute(&self, name: &str) -> bool[src]

The hasAttribute() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn has_attribute_ns(
    &self,
    namespace: Option<&str>,
    local_name: &str
) -> bool
[src]

The hasAttributeNS() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn has_attributes(&self) -> bool[src]

The hasAttributes() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn has_pointer_capture(&self, pointer_id: i32) -> bool[src]

The hasPointerCapture() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn insert_adjacent_element(
    &self,
    where_: &str,
    element: &Element
) -> Result<Option<Element>, JsValue>
[src]

The insertAdjacentElement() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn insert_adjacent_html(
    &self,
    position: &str,
    text: &str
) -> Result<(), JsValue>
[src]

The insertAdjacentHTML() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn insert_adjacent_text(
    &self,
    where_: &str,
    data: &str
) -> Result<(), JsValue>
[src]

The insertAdjacentText() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn matches(&self, selector: &str) -> Result<bool, JsValue>[src]

The matches() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn query_selector(
    &self,
    selectors: &str
) -> Result<Option<Element>, JsValue>
[src]

The querySelector() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn query_selector_all(&self, selectors: &str) -> Result<NodeList, JsValue>[src]

The querySelectorAll() method.

MDN Documentation

This API requires the following crate features to be activated: Element, NodeList

pub fn release_capture(&self)[src]

The releaseCapture() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn release_pointer_capture(&self, pointer_id: i32) -> Result<(), JsValue>[src]

The releasePointerCapture() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn remove_attribute(&self, name: &str) -> Result<(), JsValue>[src]

The removeAttribute() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn remove_attribute_ns(
    &self,
    namespace: Option<&str>,
    local_name: &str
) -> Result<(), JsValue>
[src]

The removeAttributeNS() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn remove_attribute_node(
    &self,
    old_attr: &Attr
) -> Result<Option<Attr>, JsValue>
[src]

The removeAttributeNode() method.

MDN Documentation

This API requires the following crate features to be activated: Attr, Element

pub fn request_fullscreen(&self) -> Result<(), JsValue>[src]

The requestFullscreen() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn request_pointer_lock(&self)[src]

The requestPointerLock() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_with_x_and_y(&self, x: f64, y: f64)[src]

The scroll() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll(&self)[src]

The scroll() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_with_scroll_to_options(&self, options: &ScrollToOptions)[src]

The scroll() method.

MDN Documentation

This API requires the following crate features to be activated: Element, ScrollToOptions

pub fn scroll_by_with_x_and_y(&self, x: f64, y: f64)[src]

The scrollBy() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_by(&self)[src]

The scrollBy() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_by_with_scroll_to_options(&self, options: &ScrollToOptions)[src]

The scrollBy() method.

MDN Documentation

This API requires the following crate features to be activated: Element, ScrollToOptions

pub fn scroll_into_view(&self)[src]

The scrollIntoView() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_into_view_with_bool(&self, arg: bool)[src]

The scrollIntoView() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_into_view_with_scroll_into_view_options(
    &self,
    arg: &ScrollIntoViewOptions
)
[src]

The scrollIntoView() method.

MDN Documentation

This API requires the following crate features to be activated: Element, ScrollIntoViewOptions

pub fn scroll_to_with_x_and_y(&self, x: f64, y: f64)[src]

The scrollTo() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_to(&self)[src]

The scrollTo() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn scroll_to_with_scroll_to_options(&self, options: &ScrollToOptions)[src]

The scrollTo() method.

MDN Documentation

This API requires the following crate features to be activated: Element, ScrollToOptions

pub fn set_attribute(&self, name: &str, value: &str) -> Result<(), JsValue>[src]

The setAttribute() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_attribute_ns(
    &self,
    namespace: Option<&str>,
    name: &str,
    value: &str
) -> Result<(), JsValue>
[src]

The setAttributeNS() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_attribute_node(
    &self,
    new_attr: &Attr
) -> Result<Option<Attr>, JsValue>
[src]

The setAttributeNode() method.

MDN Documentation

This API requires the following crate features to be activated: Attr, Element

pub fn set_attribute_node_ns(
    &self,
    new_attr: &Attr
) -> Result<Option<Attr>, JsValue>
[src]

The setAttributeNodeNS() method.

MDN Documentation

This API requires the following crate features to be activated: Attr, Element

pub fn set_capture(&self)[src]

The setCapture() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_capture_with_retarget_to_element(&self, retarget_to_element: bool)[src]

The setCapture() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn set_pointer_capture(&self, pointer_id: i32) -> Result<(), JsValue>[src]

The setPointerCapture() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn toggle_attribute(&self, name: &str) -> Result<bool, JsValue>[src]

The toggleAttribute() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn toggle_attribute_with_force(
    &self,
    name: &str,
    force: bool
) -> Result<bool, JsValue>
[src]

The toggleAttribute() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn webkit_matches_selector(&self, selector: &str) -> Result<bool, JsValue>[src]

The webkitMatchesSelector() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_node(&self, nodes: &Array) -> Result<(), JsValue>[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_node_0(&self) -> Result<(), JsValue>[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_node_1(&self, nodes_1: &Node) -> Result<(), JsValue>[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_node_2(
    &self,
    nodes_1: &Node,
    nodes_2: &Node
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_node_3(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_node_4(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_node_5(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_node_6(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_node_7(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node,
    nodes_7: &Node
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_str(&self, nodes: &Array) -> Result<(), JsValue>[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_str_0(&self) -> Result<(), JsValue>[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_str_1(&self, nodes_1: &str) -> Result<(), JsValue>[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_str_2(
    &self,
    nodes_1: &str,
    nodes_2: &str
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_str_3(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_str_4(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_str_5(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_str_6(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn after_with_str_7(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str,
    nodes_7: &str
) -> Result<(), JsValue>
[src]

The after() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_node(&self, nodes: &Array) -> Result<(), JsValue>[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_node_0(&self) -> Result<(), JsValue>[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_node_1(&self, nodes_1: &Node) -> Result<(), JsValue>[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_node_2(
    &self,
    nodes_1: &Node,
    nodes_2: &Node
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_node_3(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_node_4(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_node_5(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_node_6(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_node_7(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node,
    nodes_7: &Node
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_str(&self, nodes: &Array) -> Result<(), JsValue>[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_str_0(&self) -> Result<(), JsValue>[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_str_1(&self, nodes_1: &str) -> Result<(), JsValue>[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_str_2(
    &self,
    nodes_1: &str,
    nodes_2: &str
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_str_3(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_str_4(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_str_5(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_str_6(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn before_with_str_7(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str,
    nodes_7: &str
) -> Result<(), JsValue>
[src]

The before() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn remove(&self)[src]

The remove() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_node(&self, nodes: &Array) -> Result<(), JsValue>[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_node_0(&self) -> Result<(), JsValue>[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_node_1(&self, nodes_1: &Node) -> Result<(), JsValue>[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_node_2(
    &self,
    nodes_1: &Node,
    nodes_2: &Node
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_node_3(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_node_4(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_node_5(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_node_6(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_node_7(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node,
    nodes_7: &Node
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_str(&self, nodes: &Array) -> Result<(), JsValue>[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_str_0(&self) -> Result<(), JsValue>[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_str_1(&self, nodes_1: &str) -> Result<(), JsValue>[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_str_2(
    &self,
    nodes_1: &str,
    nodes_2: &str
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_str_3(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_str_4(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_str_5(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_str_6(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn replace_with_with_str_7(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str,
    nodes_7: &str
) -> Result<(), JsValue>
[src]

The replaceWith() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn convert_point_from_node_with_text(
    &self,
    point: &DomPointInit,
    from: &Text
) -> Result<DomPoint, JsValue>
[src]

The convertPointFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: DomPoint, DomPointInit, Element, Text

pub fn convert_point_from_node_with_element(
    &self,
    point: &DomPointInit,
    from: &Element
) -> Result<DomPoint, JsValue>
[src]

The convertPointFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: DomPoint, DomPointInit, Element

pub fn convert_point_from_node_with_document(
    &self,
    point: &DomPointInit,
    from: &Document
) -> Result<DomPoint, JsValue>
[src]

The convertPointFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: Document, DomPoint, DomPointInit, Element

pub fn convert_point_from_node_with_text_and_options(
    &self,
    point: &DomPointInit,
    from: &Text,
    options: &ConvertCoordinateOptions
) -> Result<DomPoint, JsValue>
[src]

The convertPointFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: ConvertCoordinateOptions, DomPoint, DomPointInit, Element, Text

pub fn convert_point_from_node_with_element_and_options(
    &self,
    point: &DomPointInit,
    from: &Element,
    options: &ConvertCoordinateOptions
) -> Result<DomPoint, JsValue>
[src]

The convertPointFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: ConvertCoordinateOptions, DomPoint, DomPointInit, Element

pub fn convert_point_from_node_with_document_and_options(
    &self,
    point: &DomPointInit,
    from: &Document,
    options: &ConvertCoordinateOptions
) -> Result<DomPoint, JsValue>
[src]

The convertPointFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: ConvertCoordinateOptions, Document, DomPoint, DomPointInit, Element

pub fn convert_quad_from_node_with_text(
    &self,
    quad: &DomQuad,
    from: &Text
) -> Result<DomQuad, JsValue>
[src]

The convertQuadFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: DomQuad, Element, Text

pub fn convert_quad_from_node_with_element(
    &self,
    quad: &DomQuad,
    from: &Element
) -> Result<DomQuad, JsValue>
[src]

The convertQuadFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: DomQuad, Element

pub fn convert_quad_from_node_with_document(
    &self,
    quad: &DomQuad,
    from: &Document
) -> Result<DomQuad, JsValue>
[src]

The convertQuadFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: Document, DomQuad, Element

pub fn convert_quad_from_node_with_text_and_options(
    &self,
    quad: &DomQuad,
    from: &Text,
    options: &ConvertCoordinateOptions
) -> Result<DomQuad, JsValue>
[src]

The convertQuadFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: ConvertCoordinateOptions, DomQuad, Element, Text

pub fn convert_quad_from_node_with_element_and_options(
    &self,
    quad: &DomQuad,
    from: &Element,
    options: &ConvertCoordinateOptions
) -> Result<DomQuad, JsValue>
[src]

The convertQuadFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: ConvertCoordinateOptions, DomQuad, Element

pub fn convert_quad_from_node_with_document_and_options(
    &self,
    quad: &DomQuad,
    from: &Document,
    options: &ConvertCoordinateOptions
) -> Result<DomQuad, JsValue>
[src]

The convertQuadFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: ConvertCoordinateOptions, Document, DomQuad, Element

pub fn convert_rect_from_node_with_text(
    &self,
    rect: &DomRectReadOnly,
    from: &Text
) -> Result<DomQuad, JsValue>
[src]

The convertRectFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: DomQuad, DomRectReadOnly, Element, Text

pub fn convert_rect_from_node_with_element(
    &self,
    rect: &DomRectReadOnly,
    from: &Element
) -> Result<DomQuad, JsValue>
[src]

The convertRectFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: DomQuad, DomRectReadOnly, Element

pub fn convert_rect_from_node_with_document(
    &self,
    rect: &DomRectReadOnly,
    from: &Document
) -> Result<DomQuad, JsValue>
[src]

The convertRectFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: Document, DomQuad, DomRectReadOnly, Element

pub fn convert_rect_from_node_with_text_and_options(
    &self,
    rect: &DomRectReadOnly,
    from: &Text,
    options: &ConvertCoordinateOptions
) -> Result<DomQuad, JsValue>
[src]

The convertRectFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: ConvertCoordinateOptions, DomQuad, DomRectReadOnly, Element, Text

pub fn convert_rect_from_node_with_element_and_options(
    &self,
    rect: &DomRectReadOnly,
    from: &Element,
    options: &ConvertCoordinateOptions
) -> Result<DomQuad, JsValue>
[src]

The convertRectFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: ConvertCoordinateOptions, DomQuad, DomRectReadOnly, Element

pub fn convert_rect_from_node_with_document_and_options(
    &self,
    rect: &DomRectReadOnly,
    from: &Document,
    options: &ConvertCoordinateOptions
) -> Result<DomQuad, JsValue>
[src]

The convertRectFromNode() method.

MDN Documentation

This API requires the following crate features to be activated: ConvertCoordinateOptions, Document, DomQuad, DomRectReadOnly, Element

pub fn get_box_quads(&self) -> Result<Array, JsValue>[src]

The getBoxQuads() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn get_box_quads_with_options(
    &self,
    options: &BoxQuadOptions
) -> Result<Array, JsValue>
[src]

The getBoxQuads() method.

MDN Documentation

This API requires the following crate features to be activated: BoxQuadOptions, Element

pub fn append_with_node(&self, nodes: &Array) -> Result<(), JsValue>[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_node_0(&self) -> Result<(), JsValue>[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_node_1(&self, nodes_1: &Node) -> Result<(), JsValue>[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_node_2(
    &self,
    nodes_1: &Node,
    nodes_2: &Node
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_node_3(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_node_4(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_node_5(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_node_6(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_node_7(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node,
    nodes_7: &Node
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_str(&self, nodes: &Array) -> Result<(), JsValue>[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_str_0(&self) -> Result<(), JsValue>[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_str_1(&self, nodes_1: &str) -> Result<(), JsValue>[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_str_2(
    &self,
    nodes_1: &str,
    nodes_2: &str
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_str_3(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_str_4(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_str_5(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_str_6(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn append_with_str_7(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str,
    nodes_7: &str
) -> Result<(), JsValue>
[src]

The append() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_node(&self, nodes: &Array) -> Result<(), JsValue>[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_node_0(&self) -> Result<(), JsValue>[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_node_1(&self, nodes_1: &Node) -> Result<(), JsValue>[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_node_2(
    &self,
    nodes_1: &Node,
    nodes_2: &Node
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_node_3(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_node_4(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_node_5(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_node_6(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_node_7(
    &self,
    nodes_1: &Node,
    nodes_2: &Node,
    nodes_3: &Node,
    nodes_4: &Node,
    nodes_5: &Node,
    nodes_6: &Node,
    nodes_7: &Node
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_str(&self, nodes: &Array) -> Result<(), JsValue>[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_str_0(&self) -> Result<(), JsValue>[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_str_1(&self, nodes_1: &str) -> Result<(), JsValue>[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_str_2(
    &self,
    nodes_1: &str,
    nodes_2: &str
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_str_3(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_str_4(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_str_5(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_str_6(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

pub fn prepend_with_str_7(
    &self,
    nodes_1: &str,
    nodes_2: &str,
    nodes_3: &str,
    nodes_4: &str,
    nodes_5: &str,
    nodes_6: &str,
    nodes_7: &str
) -> Result<(), JsValue>
[src]

The prepend() method.

MDN Documentation

This API requires the following crate features to be activated: Element

Trait Implementations

impl AsRef<Element> for HtmlElement[src]

impl AsRef<EventTarget> for HtmlElement[src]

impl AsRef<HtmlElement> for HtmlAnchorElement[src]

impl AsRef<HtmlElement> for HtmlAreaElement[src]

impl AsRef<HtmlElement> for HtmlDataListElement[src]

impl AsRef<HtmlElement> for HtmlDetailsElement[src]

impl AsRef<HtmlElement> for HtmlDialogElement[src]

impl AsRef<HtmlElement> for HtmlDirectoryElement[src]

impl AsRef<HtmlElement> for HtmlDivElement[src]

impl AsRef<HtmlElement> for HtmlElement[src]

impl AsRef<HtmlElement> for HtmlEmbedElement[src]

impl AsRef<HtmlElement> for HtmlFieldSetElement[src]

impl AsRef<HtmlElement> for HtmlFontElement[src]

impl AsRef<HtmlElement> for HtmlFormElement[src]

impl AsRef<HtmlElement> for HtmlAudioElement[src]

impl AsRef<HtmlElement> for HtmlFrameElement[src]

impl AsRef<HtmlElement> for HtmlFrameSetElement[src]

impl AsRef<HtmlElement> for HtmlHeadElement[src]

impl AsRef<HtmlElement> for HtmlHeadingElement[src]

impl AsRef<HtmlElement> for HtmlHrElement[src]

impl AsRef<HtmlElement> for HtmlHtmlElement[src]

impl AsRef<HtmlElement> for HtmlIFrameElement[src]

impl AsRef<HtmlElement> for HtmlImageElement[src]

impl AsRef<HtmlElement> for HtmlInputElement[src]

impl AsRef<HtmlElement> for HtmlLabelElement[src]

impl AsRef<HtmlElement> for HtmlBaseElement[src]

impl AsRef<HtmlElement> for HtmlLegendElement[src]

impl AsRef<HtmlElement> for HtmlLiElement[src]

impl AsRef<HtmlElement> for HtmlLinkElement[src]

impl AsRef<HtmlElement> for HtmlMapElement[src]

impl AsRef<HtmlElement> for HtmlMediaElement[src]

impl AsRef<HtmlElement> for HtmlMenuElement[src]

impl AsRef<HtmlElement> for HtmlMenuItemElement[src]

impl AsRef<HtmlElement> for HtmlMetaElement[src]

impl AsRef<HtmlElement> for HtmlMeterElement[src]

impl AsRef<HtmlElement> for HtmlModElement[src]

impl AsRef<HtmlElement> for HtmlBodyElement[src]

impl AsRef<HtmlElement> for HtmlOListElement[src]

impl AsRef<HtmlElement> for HtmlObjectElement[src]

impl AsRef<HtmlElement> for HtmlOptGroupElement[src]

impl AsRef<HtmlElement> for HtmlOptionElement[src]

impl AsRef<HtmlElement> for HtmlOutputElement[src]

impl AsRef<HtmlElement> for HtmlParagraphElement[src]

impl AsRef<HtmlElement> for HtmlParamElement[src]

impl AsRef<HtmlElement> for HtmlPictureElement[src]

impl AsRef<HtmlElement> for HtmlPreElement[src]

impl AsRef<HtmlElement> for HtmlProgressElement[src]

impl AsRef<HtmlElement> for HtmlBrElement[src]

impl AsRef<HtmlElement> for HtmlQuoteElement[src]

impl AsRef<HtmlElement> for HtmlScriptElement[src]

impl AsRef<HtmlElement> for HtmlSelectElement[src]

impl AsRef<HtmlElement> for HtmlSlotElement[src]

impl AsRef<HtmlElement> for HtmlSourceElement[src]

impl AsRef<HtmlElement> for HtmlSpanElement[src]

impl AsRef<HtmlElement> for HtmlStyleElement[src]

impl AsRef<HtmlElement> for HtmlTableCaptionElement[src]

impl AsRef<HtmlElement> for HtmlTableCellElement[src]

impl AsRef<HtmlElement> for HtmlTableColElement[src]

impl AsRef<HtmlElement> for HtmlButtonElement[src]

impl AsRef<HtmlElement> for HtmlTableElement[src]

impl AsRef<HtmlElement> for HtmlTableRowElement[src]

impl AsRef<HtmlElement> for HtmlTableSectionElement[src]

impl AsRef<HtmlElement> for HtmlTemplateElement[src]

impl AsRef<HtmlElement> for HtmlTextAreaElement[src]

impl AsRef<HtmlElement> for HtmlTimeElement[src]

impl AsRef<HtmlElement> for HtmlTitleElement[src]

impl AsRef<HtmlElement> for HtmlTrackElement[src]

impl AsRef<HtmlElement> for HtmlUListElement[src]

impl AsRef<HtmlElement> for HtmlUnknownElement[src]

impl AsRef<HtmlElement> for HtmlCanvasElement[src]

impl AsRef<HtmlElement> for HtmlVideoElement[src]

impl AsRef<HtmlElement> for HtmlDListElement[src]

impl AsRef<HtmlElement> for HtmlDataElement[src]

impl AsRef<JsValue> for HtmlElement[src]

impl AsRef<Node> for HtmlElement[src]

impl AsRef<Object> for HtmlElement[src]

impl Clone for HtmlElement[src]

impl Debug for HtmlElement[src]

impl Deref for HtmlElement[src]

type Target = Element

The resulting type after dereferencing.

impl Eq for HtmlElement[src]

impl From<HtmlAnchorElement> for HtmlElement[src]

impl From<HtmlAreaElement> for HtmlElement[src]

impl From<HtmlAudioElement> for HtmlElement[src]

impl From<HtmlBaseElement> for HtmlElement[src]

impl From<HtmlBodyElement> for HtmlElement[src]

impl From<HtmlBrElement> for HtmlElement[src]

impl From<HtmlButtonElement> for HtmlElement[src]

impl From<HtmlCanvasElement> for HtmlElement[src]

impl From<HtmlDListElement> for HtmlElement[src]

impl From<HtmlDataElement> for HtmlElement[src]

impl From<HtmlDataListElement> for HtmlElement[src]

impl From<HtmlDetailsElement> for HtmlElement[src]

impl From<HtmlDialogElement> for HtmlElement[src]

impl From<HtmlDirectoryElement> for HtmlElement[src]

impl From<HtmlDivElement> for HtmlElement[src]

impl From<HtmlElement> for JsValue[src]

impl From<HtmlElement> for Element[src]

impl From<HtmlElement> for Node[src]

impl From<HtmlElement> for EventTarget[src]

impl From<HtmlElement> for Object[src]

impl From<HtmlEmbedElement> for HtmlElement[src]

impl From<HtmlFieldSetElement> for HtmlElement[src]

impl From<HtmlFontElement> for HtmlElement[src]

impl From<HtmlFormElement> for HtmlElement[src]

impl From<HtmlFrameElement> for HtmlElement[src]

impl From<HtmlFrameSetElement> for HtmlElement[src]

impl From<HtmlHeadElement> for HtmlElement[src]

impl From<HtmlHeadingElement> for HtmlElement[src]

impl From<HtmlHrElement> for HtmlElement[src]

impl From<HtmlHtmlElement> for HtmlElement[src]

impl From<HtmlIFrameElement> for HtmlElement[src]

impl From<HtmlImageElement> for HtmlElement[src]

impl From<HtmlInputElement> for HtmlElement[src]

impl From<HtmlLabelElement> for HtmlElement[src]

impl From<HtmlLegendElement> for HtmlElement[src]

impl From<HtmlLiElement> for HtmlElement[src]

impl From<HtmlLinkElement> for HtmlElement[src]

impl From<HtmlMapElement> for HtmlElement[src]

impl From<HtmlMediaElement> for HtmlElement[src]

impl From<HtmlMenuElement> for HtmlElement[src]

impl From<HtmlMenuItemElement> for HtmlElement[src]

impl From<HtmlMetaElement> for HtmlElement[src]

impl From<HtmlMeterElement> for HtmlElement[src]

impl From<HtmlModElement> for HtmlElement[src]

impl From<HtmlOListElement> for HtmlElement[src]

impl From<HtmlObjectElement> for HtmlElement[src]

impl From<HtmlOptGroupElement> for HtmlElement[src]

impl From<HtmlOptionElement> for HtmlElement[src]

impl From<HtmlOutputElement> for HtmlElement[src]

impl From<HtmlParagraphElement> for HtmlElement[src]

impl From<HtmlParamElement> for HtmlElement[src]

impl From<HtmlPictureElement> for HtmlElement[src]

impl From<HtmlPreElement> for HtmlElement[src]

impl From<HtmlProgressElement> for HtmlElement[src]

impl From<HtmlQuoteElement> for HtmlElement[src]

impl From<HtmlScriptElement> for HtmlElement[src]

impl From<HtmlSelectElement> for HtmlElement[src]

impl From<HtmlSlotElement> for HtmlElement[src]

impl From<HtmlSourceElement> for HtmlElement[src]

impl From<HtmlSpanElement> for HtmlElement[src]

impl From<HtmlStyleElement> for HtmlElement[src]

impl From<HtmlTableCaptionElement> for HtmlElement[src]

impl From<HtmlTableCellElement> for HtmlElement[src]

impl From<HtmlTableColElement> for HtmlElement[src]

impl From<HtmlTableElement> for HtmlElement[src]

impl From<HtmlTableRowElement> for HtmlElement[src]

impl From<HtmlTableSectionElement> for HtmlElement[src]

impl From<HtmlTemplateElement> for HtmlElement[src]

impl From<HtmlTextAreaElement> for HtmlElement[src]

impl From<HtmlTimeElement> for HtmlElement[src]

impl From<HtmlTitleElement> for HtmlElement[src]

impl From<HtmlTrackElement> for HtmlElement[src]

impl From<HtmlUListElement> for HtmlElement[src]

impl From<HtmlUnknownElement> for HtmlElement[src]

impl From<HtmlVideoElement> for HtmlElement[src]

impl From<JsValue> for HtmlElement[src]

impl FromWasmAbi for HtmlElement[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for HtmlElement[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a HtmlElement[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for HtmlElement[src]

impl OptionFromWasmAbi for HtmlElement[src]

impl OptionIntoWasmAbi for HtmlElement[src]

impl<'a> OptionIntoWasmAbi for &'a HtmlElement[src]

impl PartialEq<HtmlElement> for HtmlElement[src]

impl RefFromWasmAbi for HtmlElement[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<HtmlElement>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl StructuralEq for HtmlElement[src]

impl StructuralPartialEq for HtmlElement[src]

impl WasmDescribe for HtmlElement[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.