Struct sauron::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 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_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_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 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_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

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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Text

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<(), Error>

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<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<Element> for Node

source§

fn from(obj: Element) -> 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<HtmlDataElement> for Node

source§

fn from(obj: HtmlDataElement) -> 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<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<HtmlFieldSetElement> for Node

source§

fn from(obj: HtmlFieldSetElement) -> 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<HtmlInputElement> for Node

source§

fn from(obj: HtmlInputElement) -> 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<HtmlMeterElement> for Node

source§

fn from(obj: HtmlMeterElement) -> 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<HtmlParamElement> for Node

source§

fn from(obj: HtmlParamElement) -> 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<HtmlSelectElement> for Node

source§

fn from(obj: HtmlSelectElement) -> 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<HtmlTextAreaElement> for Node

source§

fn from(obj: HtmlTextAreaElement) -> 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 DomNode

source§

fn from(node: Node) -> DomNode

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<ShadowRoot> for Node

source§

fn from(obj: ShadowRoot) -> 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 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: <Node as FromWasmAbi>::Abi) -> Node

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) -> <&'a Node as IntoWasmAbi>::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) -> <Node as IntoWasmAbi>::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) -> Node

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

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

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: <Node as LongRefFromWasmAbi>::Abi ) -> <Node as LongRefFromWasmAbi>::Anchor

Same as RefFromWasmAbi::ref_from_abi
source§

impl OptionFromWasmAbi for Node

source§

fn is_none(abi: &<Node as FromWasmAbi>::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() -> <&'a Node as IntoWasmAbi>::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() -> <Node as IntoWasmAbi>::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: <Node as RefFromWasmAbi>::Abi ) -> <Node as RefFromWasmAbi>::Anchor

Recover a Self::Anchor from Self::Abi. Read more
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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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,