Struct web_sys::Node

source ·
pub struct Node { /* private fields */ }
Expand description

The Node class.

MDN Documentation

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

Implementations§

source§

impl Node

source

pub fn node_type(&self) -> u16

Getter for the nodeType field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn node_name(&self) -> String

Getter for the nodeName field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn base_uri(&self) -> Result<Option<String>, JsValue>

Getter for the baseURI field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn is_connected(&self) -> bool

Getter for the isConnected field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn owner_document(&self) -> Option<Document>

Getter for the ownerDocument field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn parent_node(&self) -> Option<Node>

Getter for the parentNode field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn parent_element(&self) -> Option<Element>

Getter for the parentElement field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn child_nodes(&self) -> NodeList

Getter for the childNodes field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn first_child(&self) -> Option<Node>

Getter for the firstChild field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn last_child(&self) -> Option<Node>

Getter for the lastChild field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn previous_sibling(&self) -> Option<Node>

Getter for the previousSibling field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn next_sibling(&self) -> Option<Node>

Getter for the nextSibling field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn node_value(&self) -> Option<String>

Getter for the nodeValue field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn set_node_value(&self, value: Option<&str>)

Setter for the nodeValue field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn text_content(&self) -> Option<String>

Getter for the textContent field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn set_text_content(&self, value: Option<&str>)

Setter for the textContent field of this object.

MDN Documentation

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

source§

impl Node

source

pub fn append_child(&self, node: &Node) -> Result<Node, JsValue>

The appendChild() method.

MDN Documentation

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

source§

impl Node

source

pub fn clone_node(&self) -> Result<Node, JsValue>

The cloneNode() method.

MDN Documentation

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

source§

impl Node

source

pub fn clone_node_with_deep(&self, deep: bool) -> Result<Node, JsValue>

The cloneNode() method.

MDN Documentation

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

source§

impl Node

source

pub fn compare_document_position(&self, other: &Node) -> u16

The compareDocumentPosition() method.

MDN Documentation

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

source§

impl Node

source

pub fn contains(&self, other: Option<&Node>) -> bool

The contains() method.

MDN Documentation

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

source§

impl Node

source

pub fn get_root_node(&self) -> Node

The getRootNode() method.

MDN Documentation

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

source§

impl Node

source

pub fn get_root_node_with_options(&self, options: &GetRootNodeOptions) -> Node

The getRootNode() method.

MDN Documentation

This API requires the following crate features to be activated: GetRootNodeOptions, Node

source§

impl Node

source

pub fn has_child_nodes(&self) -> bool

The hasChildNodes() method.

MDN Documentation

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

source§

impl Node

source

pub fn insert_before( &self, node: &Node, child: Option<&Node> ) -> Result<Node, JsValue>

The insertBefore() method.

MDN Documentation

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

source§

impl Node

source

pub fn is_default_namespace(&self, namespace: Option<&str>) -> bool

The isDefaultNamespace() method.

MDN Documentation

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

source§

impl Node

source

pub fn is_equal_node(&self, node: Option<&Node>) -> bool

The isEqualNode() method.

MDN Documentation

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

source§

impl Node

source

pub fn is_same_node(&self, node: Option<&Node>) -> bool

The isSameNode() method.

MDN Documentation

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

source§

impl Node

source

pub fn lookup_namespace_uri(&self, prefix: Option<&str>) -> Option<String>

The lookupNamespaceURI() method.

MDN Documentation

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

source§

impl Node

source

pub fn lookup_prefix(&self, namespace: Option<&str>) -> Option<String>

The lookupPrefix() method.

MDN Documentation

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

source§

impl Node

source

pub fn normalize(&self)

The normalize() method.

MDN Documentation

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

source§

impl Node

source

pub fn remove_child(&self, child: &Node) -> Result<Node, JsValue>

The removeChild() method.

MDN Documentation

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

source§

impl Node

source

pub fn replace_child(&self, node: &Node, child: &Node) -> Result<Node, JsValue>

The replaceChild() method.

MDN Documentation

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

source§

impl Node

source

pub const ELEMENT_NODE: u16 = 1u16

The Node.ELEMENT_NODE const.

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

source

pub const ATTRIBUTE_NODE: u16 = 2u16

The Node.ATTRIBUTE_NODE const.

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

source

pub const TEXT_NODE: u16 = 3u16

The Node.TEXT_NODE const.

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

source

pub const CDATA_SECTION_NODE: u16 = 4u16

The Node.CDATA_SECTION_NODE const.

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

source

pub const ENTITY_REFERENCE_NODE: u16 = 5u16

The Node.ENTITY_REFERENCE_NODE const.

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

source

pub const ENTITY_NODE: u16 = 6u16

The Node.ENTITY_NODE const.

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

source

pub const PROCESSING_INSTRUCTION_NODE: u16 = 7u16

The Node.PROCESSING_INSTRUCTION_NODE const.

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

source

pub const COMMENT_NODE: u16 = 8u16

The Node.COMMENT_NODE const.

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

source

pub const DOCUMENT_NODE: u16 = 9u16

The Node.DOCUMENT_NODE const.

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

source

pub const DOCUMENT_TYPE_NODE: u16 = 10u16

The Node.DOCUMENT_TYPE_NODE const.

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

source

pub const DOCUMENT_FRAGMENT_NODE: u16 = 11u16

The Node.DOCUMENT_FRAGMENT_NODE const.

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

source

pub const NOTATION_NODE: u16 = 12u16

The Node.NOTATION_NODE const.

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

source

pub const DOCUMENT_POSITION_DISCONNECTED: u16 = 1u16

The Node.DOCUMENT_POSITION_DISCONNECTED const.

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

source

pub const DOCUMENT_POSITION_PRECEDING: u16 = 2u16

The Node.DOCUMENT_POSITION_PRECEDING const.

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

source

pub const DOCUMENT_POSITION_FOLLOWING: u16 = 4u16

The Node.DOCUMENT_POSITION_FOLLOWING const.

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

source

pub const DOCUMENT_POSITION_CONTAINS: u16 = 8u16

The Node.DOCUMENT_POSITION_CONTAINS const.

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

source

pub const DOCUMENT_POSITION_CONTAINED_BY: u16 = 16u16

The Node.DOCUMENT_POSITION_CONTAINED_BY const.

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

source

pub const DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: u16 = 32u16

The Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC const.

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

Methods from Deref<Target = EventTarget>§

source

pub fn add_event_listener_with_callback( &self, type_: &str, listener: &Function ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

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

source

pub fn add_event_listener_with_event_listener( &self, type_: &str, listener: &EventListener ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: EventListener, EventTarget

source

pub fn add_event_listener_with_callback_and_add_event_listener_options( &self, type_: &str, listener: &Function, options: &AddEventListenerOptions ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: AddEventListenerOptions, EventTarget

source

pub fn add_event_listener_with_event_listener_and_add_event_listener_options( &self, type_: &str, listener: &EventListener, options: &AddEventListenerOptions ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: AddEventListenerOptions, EventListener, EventTarget

source

pub fn add_event_listener_with_callback_and_bool( &self, type_: &str, listener: &Function, options: bool ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

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

source

pub fn add_event_listener_with_event_listener_and_bool( &self, type_: &str, listener: &EventListener, options: bool ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: EventListener, EventTarget

source

pub fn add_event_listener_with_callback_and_add_event_listener_options_and_wants_untrusted( &self, type_: &str, listener: &Function, options: &AddEventListenerOptions, wants_untrusted: Option<bool> ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: AddEventListenerOptions, EventTarget

source

pub fn add_event_listener_with_event_listener_and_add_event_listener_options_and_wants_untrusted( &self, type_: &str, listener: &EventListener, options: &AddEventListenerOptions, wants_untrusted: Option<bool> ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: AddEventListenerOptions, EventListener, EventTarget

source

pub fn add_event_listener_with_callback_and_bool_and_wants_untrusted( &self, type_: &str, listener: &Function, options: bool, wants_untrusted: Option<bool> ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

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

source

pub fn add_event_listener_with_event_listener_and_bool_and_wants_untrusted( &self, type_: &str, listener: &EventListener, options: bool, wants_untrusted: Option<bool> ) -> Result<(), JsValue>

The addEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: EventListener, EventTarget

source

pub fn dispatch_event(&self, event: &Event) -> Result<bool, JsValue>

The dispatchEvent() method.

MDN Documentation

This API requires the following crate features to be activated: Event, EventTarget

source

pub fn remove_event_listener_with_callback( &self, type_: &str, listener: &Function ) -> Result<(), JsValue>

The removeEventListener() method.

MDN Documentation

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

source

pub fn remove_event_listener_with_event_listener( &self, type_: &str, listener: &EventListener ) -> Result<(), JsValue>

The removeEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: EventListener, EventTarget

source

pub fn remove_event_listener_with_callback_and_event_listener_options( &self, type_: &str, listener: &Function, options: &EventListenerOptions ) -> Result<(), JsValue>

The removeEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: EventListenerOptions, EventTarget

source

pub fn remove_event_listener_with_event_listener_and_event_listener_options( &self, type_: &str, listener: &EventListener, options: &EventListenerOptions ) -> Result<(), JsValue>

The removeEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: EventListener, EventListenerOptions, EventTarget

source

pub fn remove_event_listener_with_callback_and_bool( &self, type_: &str, listener: &Function, options: bool ) -> Result<(), JsValue>

The removeEventListener() method.

MDN Documentation

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

source

pub fn remove_event_listener_with_event_listener_and_bool( &self, type_: &str, listener: &EventListener, options: bool ) -> Result<(), JsValue>

The removeEventListener() method.

MDN Documentation

This API requires the following crate features to be activated: EventListener, EventTarget

Methods from Deref<Target = Object>§

source

pub fn constructor(&self) -> Function

The constructor property returns a reference to the Object constructor function that created the instance object.

MDN documentation

source

pub fn has_own_property(&self, property: &JsValue) -> bool

The hasOwnProperty() method returns a boolean indicating whether the object has the specified property as its own property (as opposed to inheriting it).

MDN documentation

source

pub fn is_prototype_of(&self, value: &JsValue) -> bool

The isPrototypeOf() method checks if an object exists in another object’s prototype chain.

MDN documentation

source

pub fn property_is_enumerable(&self, property: &JsValue) -> bool

The propertyIsEnumerable() method returns a Boolean indicating whether the specified property is enumerable.

MDN documentation

source

pub fn to_locale_string(&self) -> JsString

The toLocaleString() method returns a string representing the object. This method is meant to be overridden by derived objects for locale-specific purposes.

MDN documentation

source

pub fn to_string(&self) -> JsString

The toString() method returns a string representing the object.

MDN documentation

source

pub fn value_of(&self) -> Object

The valueOf() method returns the primitive value of the specified object.

MDN documentation

Methods from Deref<Target = JsValue>§

source

pub const NULL: JsValue = _

source

pub const UNDEFINED: JsValue = _

source

pub const TRUE: JsValue = _

source

pub const FALSE: JsValue = _

source

pub fn as_f64(&self) -> Option<f64>

Returns the f64 value of this JS value if it’s an instance of a number.

If this JS value is not an instance of a number then this returns None.

source

pub fn is_string(&self) -> bool

Tests whether this JS value is a JS string.

source

pub fn as_string(&self) -> Option<String>

If this JS value is a string value, this function copies the JS string value into wasm linear memory, encoded as UTF-8, and returns it as a Rust String.

To avoid the copying and re-encoding, consider the JsString::try_from() function from js-sys instead.

If this JS value is not an instance of a string or if it’s not valid utf-8 then this returns None.

§UTF-16 vs UTF-8

JavaScript strings in general are encoded as UTF-16, but Rust strings are encoded as UTF-8. This can cause the Rust string to look a bit different than the JS string sometimes. For more details see the documentation about the str type which contains a few caveats about the encodings.

source

pub fn as_bool(&self) -> Option<bool>

Returns the bool value of this JS value if it’s an instance of a boolean.

If this JS value is not an instance of a boolean then this returns None.

source

pub fn is_null(&self) -> bool

Tests whether this JS value is null

source

pub fn is_undefined(&self) -> bool

Tests whether this JS value is undefined

source

pub fn is_symbol(&self) -> bool

Tests whether the type of this JS value is symbol

source

pub fn is_object(&self) -> bool

Tests whether typeof self == "object" && self !== null.

source

pub fn is_array(&self) -> bool

Tests whether this JS value is an instance of Array.

source

pub fn is_function(&self) -> bool

Tests whether the type of this JS value is function.

source

pub fn is_bigint(&self) -> bool

Tests whether the type of this JS value is bigint.

source

pub fn js_typeof(&self) -> JsValue

Applies the unary typeof JS operator on a JsValue.

MDN documentation

source

pub fn js_in(&self, obj: &JsValue) -> bool

Applies the binary in JS operator on the two JsValues.

MDN documentation

source

pub fn is_truthy(&self) -> bool

Tests whether the value is “truthy”.

source

pub fn is_falsy(&self) -> bool

Tests whether the value is “falsy”.

source

pub fn loose_eq(&self, other: &JsValue) -> bool

Compare two JsValues for equality, using the == operator in JS.

MDN documentation

source

pub fn bit_not(&self) -> JsValue

Applies the unary ~ JS operator on a JsValue.

MDN documentation

source

pub fn unsigned_shr(&self, rhs: &JsValue) -> u32

Applies the binary >>> JS operator on the two JsValues.

MDN documentation

source

pub fn checked_div(&self, rhs: &JsValue) -> JsValue

Applies the binary / JS operator on two JsValues, catching and returning any RangeError thrown.

MDN documentation

source

pub fn pow(&self, rhs: &JsValue) -> JsValue

Applies the binary ** JS operator on the two JsValues.

MDN documentation

source

pub fn lt(&self, other: &JsValue) -> bool

Applies the binary < JS operator on the two JsValues.

MDN documentation

source

pub fn le(&self, other: &JsValue) -> bool

Applies the binary <= JS operator on the two JsValues.

MDN documentation

source

pub fn ge(&self, other: &JsValue) -> bool

Applies the binary >= JS operator on the two JsValues.

MDN documentation

source

pub fn gt(&self, other: &JsValue) -> bool

Applies the binary > JS operator on the two JsValues.

MDN documentation

source

pub fn unchecked_into_f64(&self) -> f64

Applies the unary + JS operator on a JsValue. Can throw.

MDN documentation

Trait Implementations§

source§

impl AsRef<EventTarget> for Node

source§

fn as_ref(&self) -> &EventTarget

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<JsValue> for Node

source§

fn as_ref(&self) -> &JsValue

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for Attr

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for CdataSection

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for CharacterData

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for Comment

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for Document

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for DocumentFragment

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for DocumentType

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for Element

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlAnchorElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlAreaElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlAudioElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlBaseElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlBodyElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlBrElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlButtonElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlCanvasElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlDListElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlDataElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlDataListElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlDetailsElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlDialogElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlDirectoryElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlDivElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlDocument

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlEmbedElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlFieldSetElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlFontElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlFormElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlFrameElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlFrameSetElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlHeadElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlHeadingElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlHrElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlHtmlElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlIFrameElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlImageElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlInputElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlLabelElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlLegendElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlLiElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlLinkElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlMapElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlMediaElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlMenuElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlMenuItemElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlMetaElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlMeterElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlModElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlOListElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlObjectElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlOptGroupElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlOptionElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlOutputElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlParagraphElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlParamElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlPictureElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlPreElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlProgressElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlQuoteElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlScriptElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlSelectElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlSlotElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlSourceElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlSpanElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlStyleElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTableCaptionElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTableCellElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTableColElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTableElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTableRowElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTableSectionElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTemplateElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTextAreaElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTimeElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTitleElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlTrackElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlUListElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlUnknownElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for HtmlVideoElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for Node

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for ProcessingInstruction

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for ShadowRoot

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgAnimateElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgAnimateMotionElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgAnimateTransformElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgAnimationElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgCircleElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgClipPathElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgComponentTransferFunctionElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgDefsElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgDescElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgEllipseElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgFilterElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgForeignObjectElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgGeometryElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgGradientElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgGraphicsElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgImageElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgLineElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgLinearGradientElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgMarkerElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgMaskElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgMetadataElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgPathElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgPatternElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgPolygonElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgPolylineElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgRadialGradientElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgRectElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgScriptElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgSetElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgStopElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgStyleElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgSwitchElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgSymbolElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgTextContentElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgTextElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgTextPathElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgTextPositioningElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgTitleElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgUseElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgViewElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgaElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeBlendElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeColorMatrixElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeComponentTransferElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeCompositeElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeConvolveMatrixElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeDiffuseLightingElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeDisplacementMapElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeDistantLightElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeDropShadowElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeFloodElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeFuncAElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeFuncBElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeFuncGElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeFuncRElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeGaussianBlurElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeImageElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeMergeElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeMergeNodeElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeMorphologyElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeOffsetElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfePointLightElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeSpecularLightingElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeSpotLightElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeTileElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgfeTurbulenceElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvggElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgmPathElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgsvgElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for SvgtSpanElement

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for Text

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Node> for XmlDocument

source§

fn as_ref(&self) -> &Node

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Object> for Node

source§

fn as_ref(&self) -> &Object

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Node

source§

fn clone(&self) -> Node

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Node

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Deref for Node

§

type Target = EventTarget

The resulting type after dereferencing.
source§

fn deref(&self) -> &EventTarget

Dereferences the value.
source§

impl From<Attr> for Node

source§

fn from(obj: Attr) -> Node

Converts to this type from the input type.
source§

impl From<CdataSection> for Node

source§

fn from(obj: CdataSection) -> Node

Converts to this type from the input type.
source§

impl From<CharacterData> for Node

source§

fn from(obj: CharacterData) -> Node

Converts to this type from the input type.
source§

impl From<Comment> for Node

source§

fn from(obj: Comment) -> Node

Converts to this type from the input type.
source§

impl From<Document> for Node

source§

fn from(obj: Document) -> Node

Converts to this type from the input type.
source§

impl From<DocumentFragment> for Node

source§

fn from(obj: DocumentFragment) -> Node

Converts to this type from the input type.
source§

impl From<DocumentType> for Node

source§

fn from(obj: DocumentType) -> Node

Converts to this type from the input type.
source§

impl From<Element> for Node

source§

fn from(obj: Element) -> Node

Converts to this type from the input type.
source§

impl From<HtmlAnchorElement> for Node

source§

fn from(obj: HtmlAnchorElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlAreaElement> for Node

source§

fn from(obj: HtmlAreaElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlAudioElement> for Node

source§

fn from(obj: HtmlAudioElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlBaseElement> for Node

source§

fn from(obj: HtmlBaseElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlBodyElement> for Node

source§

fn from(obj: HtmlBodyElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlBrElement> for Node

source§

fn from(obj: HtmlBrElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlButtonElement> for Node

source§

fn from(obj: HtmlButtonElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlCanvasElement> for Node

source§

fn from(obj: HtmlCanvasElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlDListElement> for Node

source§

fn from(obj: HtmlDListElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlDataElement> for Node

source§

fn from(obj: HtmlDataElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlDataListElement> for Node

source§

fn from(obj: HtmlDataListElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlDetailsElement> for Node

source§

fn from(obj: HtmlDetailsElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlDialogElement> for Node

source§

fn from(obj: HtmlDialogElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlDirectoryElement> for Node

source§

fn from(obj: HtmlDirectoryElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlDivElement> for Node

source§

fn from(obj: HtmlDivElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlDocument> for Node

source§

fn from(obj: HtmlDocument) -> Node

Converts to this type from the input type.
source§

impl From<HtmlElement> for Node

source§

fn from(obj: HtmlElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlEmbedElement> for Node

source§

fn from(obj: HtmlEmbedElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlFieldSetElement> for Node

source§

fn from(obj: HtmlFieldSetElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlFontElement> for Node

source§

fn from(obj: HtmlFontElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlFormElement> for Node

source§

fn from(obj: HtmlFormElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlFrameElement> for Node

source§

fn from(obj: HtmlFrameElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlFrameSetElement> for Node

source§

fn from(obj: HtmlFrameSetElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlHeadElement> for Node

source§

fn from(obj: HtmlHeadElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlHeadingElement> for Node

source§

fn from(obj: HtmlHeadingElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlHrElement> for Node

source§

fn from(obj: HtmlHrElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlHtmlElement> for Node

source§

fn from(obj: HtmlHtmlElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlIFrameElement> for Node

source§

fn from(obj: HtmlIFrameElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlImageElement> for Node

source§

fn from(obj: HtmlImageElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlInputElement> for Node

source§

fn from(obj: HtmlInputElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlLabelElement> for Node

source§

fn from(obj: HtmlLabelElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlLegendElement> for Node

source§

fn from(obj: HtmlLegendElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlLiElement> for Node

source§

fn from(obj: HtmlLiElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlLinkElement> for Node

source§

fn from(obj: HtmlLinkElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlMapElement> for Node

source§

fn from(obj: HtmlMapElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlMediaElement> for Node

source§

fn from(obj: HtmlMediaElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlMenuElement> for Node

source§

fn from(obj: HtmlMenuElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlMenuItemElement> for Node

source§

fn from(obj: HtmlMenuItemElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlMetaElement> for Node

source§

fn from(obj: HtmlMetaElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlMeterElement> for Node

source§

fn from(obj: HtmlMeterElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlModElement> for Node

source§

fn from(obj: HtmlModElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlOListElement> for Node

source§

fn from(obj: HtmlOListElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlObjectElement> for Node

source§

fn from(obj: HtmlObjectElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlOptGroupElement> for Node

source§

fn from(obj: HtmlOptGroupElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlOptionElement> for Node

source§

fn from(obj: HtmlOptionElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlOutputElement> for Node

source§

fn from(obj: HtmlOutputElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlParagraphElement> for Node

source§

fn from(obj: HtmlParagraphElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlParamElement> for Node

source§

fn from(obj: HtmlParamElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlPictureElement> for Node

source§

fn from(obj: HtmlPictureElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlPreElement> for Node

source§

fn from(obj: HtmlPreElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlProgressElement> for Node

source§

fn from(obj: HtmlProgressElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlQuoteElement> for Node

source§

fn from(obj: HtmlQuoteElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlScriptElement> for Node

source§

fn from(obj: HtmlScriptElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlSelectElement> for Node

source§

fn from(obj: HtmlSelectElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlSlotElement> for Node

source§

fn from(obj: HtmlSlotElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlSourceElement> for Node

source§

fn from(obj: HtmlSourceElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlSpanElement> for Node

source§

fn from(obj: HtmlSpanElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlStyleElement> for Node

source§

fn from(obj: HtmlStyleElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTableCaptionElement> for Node

source§

fn from(obj: HtmlTableCaptionElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTableCellElement> for Node

source§

fn from(obj: HtmlTableCellElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTableColElement> for Node

source§

fn from(obj: HtmlTableColElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTableElement> for Node

source§

fn from(obj: HtmlTableElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTableRowElement> for Node

source§

fn from(obj: HtmlTableRowElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTableSectionElement> for Node

source§

fn from(obj: HtmlTableSectionElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTemplateElement> for Node

source§

fn from(obj: HtmlTemplateElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTextAreaElement> for Node

source§

fn from(obj: HtmlTextAreaElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTimeElement> for Node

source§

fn from(obj: HtmlTimeElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTitleElement> for Node

source§

fn from(obj: HtmlTitleElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlTrackElement> for Node

source§

fn from(obj: HtmlTrackElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlUListElement> for Node

source§

fn from(obj: HtmlUListElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlUnknownElement> for Node

source§

fn from(obj: HtmlUnknownElement) -> Node

Converts to this type from the input type.
source§

impl From<HtmlVideoElement> for Node

source§

fn from(obj: HtmlVideoElement) -> Node

Converts to this type from the input type.
source§

impl From<JsValue> for Node

source§

fn from(obj: JsValue) -> Node

Converts to this type from the input type.
source§

impl From<Node> for EventTarget

source§

fn from(obj: Node) -> EventTarget

Converts to this type from the input type.
source§

impl From<Node> for JsValue

source§

fn from(obj: Node) -> JsValue

Converts to this type from the input type.
source§

impl From<Node> for Object

source§

fn from(obj: Node) -> Object

Converts to this type from the input type.
source§

impl From<ProcessingInstruction> for Node

source§

fn from(obj: ProcessingInstruction) -> Node

Converts to this type from the input type.
source§

impl From<ShadowRoot> for Node

source§

fn from(obj: ShadowRoot) -> Node

Converts to this type from the input type.
source§

impl From<SvgAnimateElement> for Node

source§

fn from(obj: SvgAnimateElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgAnimateMotionElement> for Node

source§

fn from(obj: SvgAnimateMotionElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgAnimateTransformElement> for Node

source§

fn from(obj: SvgAnimateTransformElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgAnimationElement> for Node

source§

fn from(obj: SvgAnimationElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgCircleElement> for Node

source§

fn from(obj: SvgCircleElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgClipPathElement> for Node

source§

fn from(obj: SvgClipPathElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgComponentTransferFunctionElement> for Node

source§

fn from(obj: SvgComponentTransferFunctionElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgDefsElement> for Node

source§

fn from(obj: SvgDefsElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgDescElement> for Node

source§

fn from(obj: SvgDescElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgElement> for Node

source§

fn from(obj: SvgElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgEllipseElement> for Node

source§

fn from(obj: SvgEllipseElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgFilterElement> for Node

source§

fn from(obj: SvgFilterElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgForeignObjectElement> for Node

source§

fn from(obj: SvgForeignObjectElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgGeometryElement> for Node

source§

fn from(obj: SvgGeometryElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgGradientElement> for Node

source§

fn from(obj: SvgGradientElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgGraphicsElement> for Node

source§

fn from(obj: SvgGraphicsElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgImageElement> for Node

source§

fn from(obj: SvgImageElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgLineElement> for Node

source§

fn from(obj: SvgLineElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgLinearGradientElement> for Node

source§

fn from(obj: SvgLinearGradientElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgMarkerElement> for Node

source§

fn from(obj: SvgMarkerElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgMaskElement> for Node

source§

fn from(obj: SvgMaskElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgMetadataElement> for Node

source§

fn from(obj: SvgMetadataElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgPathElement> for Node

source§

fn from(obj: SvgPathElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgPatternElement> for Node

source§

fn from(obj: SvgPatternElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgPolygonElement> for Node

source§

fn from(obj: SvgPolygonElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgPolylineElement> for Node

source§

fn from(obj: SvgPolylineElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgRadialGradientElement> for Node

source§

fn from(obj: SvgRadialGradientElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgRectElement> for Node

source§

fn from(obj: SvgRectElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgScriptElement> for Node

source§

fn from(obj: SvgScriptElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgSetElement> for Node

source§

fn from(obj: SvgSetElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgStopElement> for Node

source§

fn from(obj: SvgStopElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgStyleElement> for Node

source§

fn from(obj: SvgStyleElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgSwitchElement> for Node

source§

fn from(obj: SvgSwitchElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgSymbolElement> for Node

source§

fn from(obj: SvgSymbolElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgTextContentElement> for Node

source§

fn from(obj: SvgTextContentElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgTextElement> for Node

source§

fn from(obj: SvgTextElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgTextPathElement> for Node

source§

fn from(obj: SvgTextPathElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgTextPositioningElement> for Node

source§

fn from(obj: SvgTextPositioningElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgTitleElement> for Node

source§

fn from(obj: SvgTitleElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgUseElement> for Node

source§

fn from(obj: SvgUseElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgViewElement> for Node

source§

fn from(obj: SvgViewElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgaElement> for Node

source§

fn from(obj: SvgaElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeBlendElement> for Node

source§

fn from(obj: SvgfeBlendElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeColorMatrixElement> for Node

source§

fn from(obj: SvgfeColorMatrixElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeComponentTransferElement> for Node

source§

fn from(obj: SvgfeComponentTransferElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeCompositeElement> for Node

source§

fn from(obj: SvgfeCompositeElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeConvolveMatrixElement> for Node

source§

fn from(obj: SvgfeConvolveMatrixElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeDiffuseLightingElement> for Node

source§

fn from(obj: SvgfeDiffuseLightingElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeDisplacementMapElement> for Node

source§

fn from(obj: SvgfeDisplacementMapElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeDistantLightElement> for Node

source§

fn from(obj: SvgfeDistantLightElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeDropShadowElement> for Node

source§

fn from(obj: SvgfeDropShadowElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeFloodElement> for Node

source§

fn from(obj: SvgfeFloodElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeFuncAElement> for Node

source§

fn from(obj: SvgfeFuncAElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeFuncBElement> for Node

source§

fn from(obj: SvgfeFuncBElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeFuncGElement> for Node

source§

fn from(obj: SvgfeFuncGElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeFuncRElement> for Node

source§

fn from(obj: SvgfeFuncRElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeGaussianBlurElement> for Node

source§

fn from(obj: SvgfeGaussianBlurElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeImageElement> for Node

source§

fn from(obj: SvgfeImageElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeMergeElement> for Node

source§

fn from(obj: SvgfeMergeElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeMergeNodeElement> for Node

source§

fn from(obj: SvgfeMergeNodeElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeMorphologyElement> for Node

source§

fn from(obj: SvgfeMorphologyElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeOffsetElement> for Node

source§

fn from(obj: SvgfeOffsetElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfePointLightElement> for Node

source§

fn from(obj: SvgfePointLightElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeSpecularLightingElement> for Node

source§

fn from(obj: SvgfeSpecularLightingElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeSpotLightElement> for Node

source§

fn from(obj: SvgfeSpotLightElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeTileElement> for Node

source§

fn from(obj: SvgfeTileElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgfeTurbulenceElement> for Node

source§

fn from(obj: SvgfeTurbulenceElement) -> Node

Converts to this type from the input type.
source§

impl From<SvggElement> for Node

source§

fn from(obj: SvggElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgmPathElement> for Node

source§

fn from(obj: SvgmPathElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgsvgElement> for Node

source§

fn from(obj: SvgsvgElement) -> Node

Converts to this type from the input type.
source§

impl From<SvgtSpanElement> for Node

source§

fn from(obj: SvgtSpanElement) -> Node

Converts to this type from the input type.
source§

impl From<Text> for Node

source§

fn from(obj: Text) -> Node

Converts to this type from the input type.
source§

impl From<XmlDocument> for Node

source§

fn from(obj: XmlDocument) -> Node

Converts to this type from the input type.
source§

impl FromWasmAbi for Node

§

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary.
source§

unsafe fn from_abi(js: Self::Abi) -> Self

Recover a Self from Self::Abi. Read more
source§

impl<'a> IntoWasmAbi for &'a Node

§

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary.
source§

fn into_abi(self) -> Self::Abi

Convert self into Self::Abi so that it can be sent across the wasm ABI boundary.
source§

impl IntoWasmAbi for Node

§

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary.
source§

fn into_abi(self) -> Self::Abi

Convert self into Self::Abi so that it can be sent across the wasm ABI boundary.
source§

impl JsCast for Node

source§

fn instanceof(val: &JsValue) -> bool

Performs a dynamic instanceof check to see whether the JsValue provided is an instance of this type. Read more
source§

fn unchecked_from_js(val: JsValue) -> Self

Performs a zero-cost unchecked conversion from a JsValue into an instance of Self Read more
source§

fn unchecked_from_js_ref(val: &JsValue) -> &Self

Performs a zero-cost unchecked conversion from a &JsValue into an instance of &Self. Read more
source§

fn has_type<T>(&self) -> bool
where T: JsCast,

Test whether this JS value has a type T. Read more
source§

fn dyn_into<T>(self) -> Result<T, Self>
where T: JsCast,

Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
source§

fn dyn_ref<T>(&self) -> Option<&T>
where T: JsCast,

Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
source§

fn unchecked_into<T>(self) -> T
where T: JsCast,

Performs a zero-cost unchecked cast into the specified type. Read more
source§

fn unchecked_ref<T>(&self) -> &T
where T: JsCast,

Performs a zero-cost unchecked cast into a reference to the specified type. Read more
source§

fn is_instance_of<T>(&self) -> bool
where T: JsCast,

Test whether this JS value is an instance of the type T. Read more
source§

fn is_type_of(val: &JsValue) -> bool

Performs a dynamic check to see whether the JsValue provided is a value of this type. Read more
source§

impl LongRefFromWasmAbi for Node

§

type Abi = <JsValue as LongRefFromWasmAbi>::Abi

Same as RefFromWasmAbi::Abi
§

type Anchor = Node

Same as RefFromWasmAbi::Anchor
source§

unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor

Same as RefFromWasmAbi::ref_from_abi
source§

impl OptionFromWasmAbi for Node

source§

fn is_none(abi: &Self::Abi) -> bool

Tests whether the argument is a “none” instance. If so it will be deserialized as None, and otherwise it will be passed to FromWasmAbi.
source§

impl<'a> OptionIntoWasmAbi for &'a Node

source§

fn none() -> Self::Abi

Returns an ABI instance indicating “none”, which JS will interpret as the None branch of this option. Read more
source§

impl OptionIntoWasmAbi for Node

source§

fn none() -> Self::Abi

Returns an ABI instance indicating “none”, which JS will interpret as the None branch of this option. Read more
source§

impl PartialEq for Node

source§

fn eq(&self, other: &Node) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl RefFromWasmAbi for Node

§

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.
§

type Anchor = ManuallyDrop<Node>

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.
source§

unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor

Recover a Self::Anchor from Self::Abi. Read more
source§

impl WasmDescribe for Node

source§

impl Eq for Node

source§

impl StructuralPartialEq for Node

Auto Trait Implementations§

§

impl Freeze for Node

§

impl RefUnwindSafe for Node

§

impl !Send for Node

§

impl !Sync for Node

§

impl Unpin for Node

§

impl UnwindSafe for Node

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ReturnWasmAbi for T
where T: IntoWasmAbi,

§

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi
source§

fn return_abi(self) -> <T as ReturnWasmAbi>::Abi

Same as IntoWasmAbi::into_abi, except that it may throw and never return in the case of Err.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> VectorFromWasmAbi for T
where T: JsObject,

source§

impl<T> VectorIntoWasmAbi for T
where T: JsObject,