pub struct Node { /* private fields */ }Expand description
The Node class.
This API requires the following crate features to be activated: Node
Implementations§
Source§impl Node
impl Node
Sourcepub const ELEMENT_NODE: u16
pub const ELEMENT_NODE: u16
The Node.ELEMENT_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const ATTRIBUTE_NODE: u16
pub const ATTRIBUTE_NODE: u16
The Node.ATTRIBUTE_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const TEXT_NODE: u16
pub const TEXT_NODE: u16
The Node.TEXT_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const CDATA_SECTION_NODE: u16
pub const CDATA_SECTION_NODE: u16
The Node.CDATA_SECTION_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const ENTITY_REFERENCE_NODE: u16
pub const ENTITY_REFERENCE_NODE: u16
The Node.ENTITY_REFERENCE_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const ENTITY_NODE: u16
pub const ENTITY_NODE: u16
The Node.ENTITY_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const PROCESSING_INSTRUCTION_NODE: u16
pub const PROCESSING_INSTRUCTION_NODE: u16
The Node.PROCESSING_INSTRUCTION_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const COMMENT_NODE: u16
pub const COMMENT_NODE: u16
The Node.COMMENT_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const DOCUMENT_NODE: u16
pub const DOCUMENT_NODE: u16
The Node.DOCUMENT_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const DOCUMENT_TYPE_NODE: u16
pub const DOCUMENT_TYPE_NODE: u16
The Node.DOCUMENT_TYPE_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const DOCUMENT_FRAGMENT_NODE: u16
pub const DOCUMENT_FRAGMENT_NODE: u16
The Node.DOCUMENT_FRAGMENT_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const NOTATION_NODE: u16
pub const NOTATION_NODE: u16
The Node.NOTATION_NODE const.
This API requires the following crate features to be activated: Node
Sourcepub const DOCUMENT_POSITION_DISCONNECTED: u16
pub const DOCUMENT_POSITION_DISCONNECTED: u16
The Node.DOCUMENT_POSITION_DISCONNECTED const.
This API requires the following crate features to be activated: Node
Sourcepub const DOCUMENT_POSITION_PRECEDING: u16
pub const DOCUMENT_POSITION_PRECEDING: u16
The Node.DOCUMENT_POSITION_PRECEDING const.
This API requires the following crate features to be activated: Node
Sourcepub const DOCUMENT_POSITION_FOLLOWING: u16
pub const DOCUMENT_POSITION_FOLLOWING: u16
The Node.DOCUMENT_POSITION_FOLLOWING const.
This API requires the following crate features to be activated: Node
Sourcepub const DOCUMENT_POSITION_CONTAINS: u16
pub const DOCUMENT_POSITION_CONTAINS: u16
The Node.DOCUMENT_POSITION_CONTAINS const.
This API requires the following crate features to be activated: Node
Sourcepub const DOCUMENT_POSITION_CONTAINED_BY: u16
pub const DOCUMENT_POSITION_CONTAINED_BY: u16
The Node.DOCUMENT_POSITION_CONTAINED_BY const.
This API requires the following crate features to be activated: Node
Sourcepub const DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: u16
pub const DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: u16
The Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC const.
This API requires the following crate features to be activated: Node
Methods from Deref<Target = EventTarget>§
pub fn add_event_listener_with_callback( &self, type_: &str, listener: &Function, ) -> Result<(), JsValue>
pub fn add_event_listener_with_event_listener( &self, type_: &str, listener: &EventListener, ) -> Result<(), JsValue>
pub fn add_event_listener_with_callback_and_add_event_listener_options( &self, type_: &str, listener: &Function, options: &AddEventListenerOptions, ) -> Result<(), JsValue>
pub fn add_event_listener_with_event_listener_and_add_event_listener_options( &self, type_: &str, listener: &EventListener, options: &AddEventListenerOptions, ) -> Result<(), JsValue>
pub fn add_event_listener_with_callback_and_bool( &self, type_: &str, listener: &Function, options: bool, ) -> Result<(), JsValue>
pub fn add_event_listener_with_event_listener_and_bool( &self, type_: &str, listener: &EventListener, options: bool, ) -> Result<(), JsValue>
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>
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>
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>
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>
pub fn dispatch_event(&self, event: &Event) -> Result<bool, JsValue>
pub fn remove_event_listener_with_callback( &self, type_: &str, listener: &Function, ) -> Result<(), JsValue>
pub fn remove_event_listener_with_event_listener( &self, type_: &str, listener: &EventListener, ) -> Result<(), JsValue>
pub fn remove_event_listener_with_callback_and_event_listener_options( &self, type_: &str, listener: &Function, options: &EventListenerOptions, ) -> Result<(), JsValue>
pub fn remove_event_listener_with_event_listener_and_event_listener_options( &self, type_: &str, listener: &EventListener, options: &EventListenerOptions, ) -> Result<(), JsValue>
pub fn remove_event_listener_with_callback_and_bool( &self, type_: &str, listener: &Function, options: bool, ) -> Result<(), JsValue>
pub fn remove_event_listener_with_event_listener_and_bool( &self, type_: &str, listener: &EventListener, options: bool, ) -> Result<(), JsValue>
Methods from Deref<Target = Object>§
pub fn constructor(&self) -> Function
pub fn has_own_property(&self, property: &JsValue) -> bool
Use Object::hasOwn instead.
pub fn is_prototype_of(&self, value: &JsValue) -> bool
pub fn property_is_enumerable(&self, property: &JsValue) -> bool
pub fn to_locale_string(&self) -> JsString
pub fn to_string(&self) -> JsString
pub fn to_js_string(&self) -> JsString
pub fn value_of(&self) -> Object
Methods from Deref<Target = JsValue>§
pub const NULL: JsValue
pub const UNDEFINED: JsValue
pub const TRUE: JsValue
pub const FALSE: JsValue
Sourcepub fn unchecked_into_f64(&self) -> f64
pub fn unchecked_into_f64(&self) -> f64
Returns the value as f64 without type checking. Used by serde-wasm-bindgen for numeric conversions.
Sourcepub fn has_type<T>(&self) -> boolwhere
T: JsCast,
pub fn has_type<T>(&self) -> boolwhere
T: JsCast,
Check if this value is an instance of a specific JS type.
Sourcepub fn checked_div(&self, rhs: &JsValue) -> JsValue
pub fn checked_div(&self, rhs: &JsValue) -> JsValue
Checked division.
Sourcepub fn unsigned_shr(&self, rhs: &JsValue) -> u32
pub fn unsigned_shr(&self, rhs: &JsValue) -> u32
Unsigned right shift.
Sourcepub fn is_function(&self) -> bool
pub fn is_function(&self) -> bool
Check if this value is a function.
Sourcepub fn is_undefined(&self) -> bool
pub fn is_undefined(&self) -> bool
Check if this value is undefined.
Sourcepub fn is_null_or_undefined(&self) -> bool
pub fn is_null_or_undefined(&self) -> bool
Check if this value is null or undefined.
Sourcepub fn js_in(&self, obj: &JsValue) -> bool
pub fn js_in(&self, obj: &JsValue) -> bool
Check if this value has a property with the given name.
Sourcepub fn as_debug_string(&self) -> String
pub fn as_debug_string(&self) -> String
Get a debug string representation of the value.
Trait Implementations§
Source§impl AsRef<EventTarget> for Node
impl AsRef<EventTarget> for Node
Source§fn as_ref(&self) -> &EventTarget
fn as_ref(&self) -> &EventTarget
Source§impl AsRef<Node> for CharacterData
impl AsRef<Node> for CharacterData
Source§impl AsRef<Node> for DocumentFragment
impl AsRef<Node> for DocumentFragment
Source§impl AsRef<Node> for DocumentType
impl AsRef<Node> for DocumentType
Source§impl AsRef<Node> for HtmlAnchorElement
impl AsRef<Node> for HtmlAnchorElement
Source§impl AsRef<Node> for HtmlAudioElement
impl AsRef<Node> for HtmlAudioElement
Source§impl AsRef<Node> for HtmlBodyElement
impl AsRef<Node> for HtmlBodyElement
Source§impl AsRef<Node> for HtmlBrElement
impl AsRef<Node> for HtmlBrElement
Source§impl AsRef<Node> for HtmlButtonElement
impl AsRef<Node> for HtmlButtonElement
Source§impl AsRef<Node> for HtmlCanvasElement
impl AsRef<Node> for HtmlCanvasElement
Source§impl AsRef<Node> for HtmlDivElement
impl AsRef<Node> for HtmlDivElement
Source§impl AsRef<Node> for HtmlDocument
impl AsRef<Node> for HtmlDocument
Source§impl AsRef<Node> for HtmlElement
impl AsRef<Node> for HtmlElement
Source§impl AsRef<Node> for HtmlFormElement
impl AsRef<Node> for HtmlFormElement
Source§impl AsRef<Node> for HtmlHeadElement
impl AsRef<Node> for HtmlHeadElement
Source§impl AsRef<Node> for HtmlImageElement
impl AsRef<Node> for HtmlImageElement
Source§impl AsRef<Node> for HtmlInputElement
impl AsRef<Node> for HtmlInputElement
Source§impl AsRef<Node> for HtmlLabelElement
impl AsRef<Node> for HtmlLabelElement
Source§impl AsRef<Node> for HtmlLinkElement
impl AsRef<Node> for HtmlLinkElement
Source§impl AsRef<Node> for HtmlMediaElement
impl AsRef<Node> for HtmlMediaElement
Source§impl AsRef<Node> for HtmlMetaElement
impl AsRef<Node> for HtmlMetaElement
Source§impl AsRef<Node> for HtmlOptionElement
impl AsRef<Node> for HtmlOptionElement
Source§impl AsRef<Node> for HtmlParagraphElement
impl AsRef<Node> for HtmlParagraphElement
Source§impl AsRef<Node> for HtmlScriptElement
impl AsRef<Node> for HtmlScriptElement
Source§impl AsRef<Node> for HtmlSelectElement
impl AsRef<Node> for HtmlSelectElement
Source§impl AsRef<Node> for HtmlSpanElement
impl AsRef<Node> for HtmlSpanElement
Source§impl AsRef<Node> for HtmlStyleElement
impl AsRef<Node> for HtmlStyleElement
Source§impl AsRef<Node> for HtmlTableCellElement
impl AsRef<Node> for HtmlTableCellElement
Source§impl AsRef<Node> for HtmlTableElement
impl AsRef<Node> for HtmlTableElement
Source§impl AsRef<Node> for HtmlTableRowElement
impl AsRef<Node> for HtmlTableRowElement
Source§impl AsRef<Node> for HtmlTemplateElement
impl AsRef<Node> for HtmlTemplateElement
Source§impl AsRef<Node> for HtmlTextAreaElement
impl AsRef<Node> for HtmlTextAreaElement
Source§impl AsRef<Node> for HtmlVideoElement
impl AsRef<Node> for HtmlVideoElement
Source§impl AsRef<Node> for ProcessingInstruction
impl AsRef<Node> for ProcessingInstruction
Source§impl AsRef<Node> for ShadowRoot
impl AsRef<Node> for ShadowRoot
Source§impl AsRef<Node> for SvgElement
impl AsRef<Node> for SvgElement
Source§impl AsRef<Node> for SvgGraphicsElement
impl AsRef<Node> for SvgGraphicsElement
Source§impl AsRef<Node> for SvgsvgElement
impl AsRef<Node> for SvgsvgElement
Source§impl BatchableResult for Node
impl BatchableResult for Node
fn try_placeholder(batch: &mut Runtime<'_>) -> Option<Self>
Source§impl BinaryDecode for Node
impl BinaryDecode for Node
fn decode(decoder: &mut DecodedData<'_>) -> Result<Self, DecodeError>
Source§impl BinaryEncode for Node
impl BinaryEncode for Node
fn encode(self, encoder: &mut EncodedData)
Source§impl Deref for Node
impl Deref for Node
Source§type Target = EventTarget
type Target = EventTarget
Source§fn deref(&self) -> &EventTarget
fn deref(&self) -> &EventTarget
Source§impl EncodeTypeDef for Node
impl EncodeTypeDef for Node
fn encode_type_def(type_def: &mut TypeDef)
impl Eq for Node
Source§impl From<CharacterData> for Node
impl From<CharacterData> for Node
Source§fn from(val: CharacterData) -> Node
fn from(val: CharacterData) -> Node
Source§impl From<DocumentFragment> for Node
impl From<DocumentFragment> for Node
Source§fn from(val: DocumentFragment) -> Node
fn from(val: DocumentFragment) -> Node
Source§impl From<DocumentType> for Node
impl From<DocumentType> for Node
Source§fn from(val: DocumentType) -> Node
fn from(val: DocumentType) -> Node
Source§impl From<HtmlAnchorElement> for Node
impl From<HtmlAnchorElement> for Node
Source§fn from(val: HtmlAnchorElement) -> Node
fn from(val: HtmlAnchorElement) -> Node
Source§impl From<HtmlAudioElement> for Node
impl From<HtmlAudioElement> for Node
Source§fn from(val: HtmlAudioElement) -> Node
fn from(val: HtmlAudioElement) -> Node
Source§impl From<HtmlBodyElement> for Node
impl From<HtmlBodyElement> for Node
Source§fn from(val: HtmlBodyElement) -> Node
fn from(val: HtmlBodyElement) -> Node
Source§impl From<HtmlBrElement> for Node
impl From<HtmlBrElement> for Node
Source§fn from(val: HtmlBrElement) -> Node
fn from(val: HtmlBrElement) -> Node
Source§impl From<HtmlButtonElement> for Node
impl From<HtmlButtonElement> for Node
Source§fn from(val: HtmlButtonElement) -> Node
fn from(val: HtmlButtonElement) -> Node
Source§impl From<HtmlCanvasElement> for Node
impl From<HtmlCanvasElement> for Node
Source§fn from(val: HtmlCanvasElement) -> Node
fn from(val: HtmlCanvasElement) -> Node
Source§impl From<HtmlDivElement> for Node
impl From<HtmlDivElement> for Node
Source§fn from(val: HtmlDivElement) -> Node
fn from(val: HtmlDivElement) -> Node
Source§impl From<HtmlDocument> for Node
impl From<HtmlDocument> for Node
Source§fn from(val: HtmlDocument) -> Node
fn from(val: HtmlDocument) -> Node
Source§impl From<HtmlElement> for Node
impl From<HtmlElement> for Node
Source§fn from(val: HtmlElement) -> Node
fn from(val: HtmlElement) -> Node
Source§impl From<HtmlFormElement> for Node
impl From<HtmlFormElement> for Node
Source§fn from(val: HtmlFormElement) -> Node
fn from(val: HtmlFormElement) -> Node
Source§impl From<HtmlHeadElement> for Node
impl From<HtmlHeadElement> for Node
Source§fn from(val: HtmlHeadElement) -> Node
fn from(val: HtmlHeadElement) -> Node
Source§impl From<HtmlImageElement> for Node
impl From<HtmlImageElement> for Node
Source§fn from(val: HtmlImageElement) -> Node
fn from(val: HtmlImageElement) -> Node
Source§impl From<HtmlInputElement> for Node
impl From<HtmlInputElement> for Node
Source§fn from(val: HtmlInputElement) -> Node
fn from(val: HtmlInputElement) -> Node
Source§impl From<HtmlLabelElement> for Node
impl From<HtmlLabelElement> for Node
Source§fn from(val: HtmlLabelElement) -> Node
fn from(val: HtmlLabelElement) -> Node
Source§impl From<HtmlLinkElement> for Node
impl From<HtmlLinkElement> for Node
Source§fn from(val: HtmlLinkElement) -> Node
fn from(val: HtmlLinkElement) -> Node
Source§impl From<HtmlMediaElement> for Node
impl From<HtmlMediaElement> for Node
Source§fn from(val: HtmlMediaElement) -> Node
fn from(val: HtmlMediaElement) -> Node
Source§impl From<HtmlMetaElement> for Node
impl From<HtmlMetaElement> for Node
Source§fn from(val: HtmlMetaElement) -> Node
fn from(val: HtmlMetaElement) -> Node
Source§impl From<HtmlOptionElement> for Node
impl From<HtmlOptionElement> for Node
Source§fn from(val: HtmlOptionElement) -> Node
fn from(val: HtmlOptionElement) -> Node
Source§impl From<HtmlParagraphElement> for Node
impl From<HtmlParagraphElement> for Node
Source§fn from(val: HtmlParagraphElement) -> Node
fn from(val: HtmlParagraphElement) -> Node
Source§impl From<HtmlScriptElement> for Node
impl From<HtmlScriptElement> for Node
Source§fn from(val: HtmlScriptElement) -> Node
fn from(val: HtmlScriptElement) -> Node
Source§impl From<HtmlSelectElement> for Node
impl From<HtmlSelectElement> for Node
Source§fn from(val: HtmlSelectElement) -> Node
fn from(val: HtmlSelectElement) -> Node
Source§impl From<HtmlSpanElement> for Node
impl From<HtmlSpanElement> for Node
Source§fn from(val: HtmlSpanElement) -> Node
fn from(val: HtmlSpanElement) -> Node
Source§impl From<HtmlStyleElement> for Node
impl From<HtmlStyleElement> for Node
Source§fn from(val: HtmlStyleElement) -> Node
fn from(val: HtmlStyleElement) -> Node
Source§impl From<HtmlTableCellElement> for Node
impl From<HtmlTableCellElement> for Node
Source§fn from(val: HtmlTableCellElement) -> Node
fn from(val: HtmlTableCellElement) -> Node
Source§impl From<HtmlTableElement> for Node
impl From<HtmlTableElement> for Node
Source§fn from(val: HtmlTableElement) -> Node
fn from(val: HtmlTableElement) -> Node
Source§impl From<HtmlTableRowElement> for Node
impl From<HtmlTableRowElement> for Node
Source§fn from(val: HtmlTableRowElement) -> Node
fn from(val: HtmlTableRowElement) -> Node
Source§impl From<HtmlTemplateElement> for Node
impl From<HtmlTemplateElement> for Node
Source§fn from(val: HtmlTemplateElement) -> Node
fn from(val: HtmlTemplateElement) -> Node
Source§impl From<HtmlTextAreaElement> for Node
impl From<HtmlTextAreaElement> for Node
Source§fn from(val: HtmlTextAreaElement) -> Node
fn from(val: HtmlTextAreaElement) -> Node
Source§impl From<HtmlVideoElement> for Node
impl From<HtmlVideoElement> for Node
Source§fn from(val: HtmlVideoElement) -> Node
fn from(val: HtmlVideoElement) -> Node
Source§impl From<Node> for EventTarget
impl From<Node> for EventTarget
Source§fn from(val: Node) -> EventTarget
fn from(val: Node) -> EventTarget
Source§impl From<ProcessingInstruction> for Node
impl From<ProcessingInstruction> for Node
Source§fn from(val: ProcessingInstruction) -> Node
fn from(val: ProcessingInstruction) -> Node
Source§impl From<ShadowRoot> for Node
impl From<ShadowRoot> for Node
Source§fn from(val: ShadowRoot) -> Node
fn from(val: ShadowRoot) -> Node
Source§impl From<SvgElement> for Node
impl From<SvgElement> for Node
Source§fn from(val: SvgElement) -> Node
fn from(val: SvgElement) -> Node
Source§impl From<SvgGraphicsElement> for Node
impl From<SvgGraphicsElement> for Node
Source§fn from(val: SvgGraphicsElement) -> Node
fn from(val: SvgGraphicsElement) -> Node
Source§impl From<SvgsvgElement> for Node
impl From<SvgsvgElement> for Node
Source§fn from(val: SvgsvgElement) -> Node
fn from(val: SvgsvgElement) -> Node
Source§impl IntoJsGeneric for Node
impl IntoJsGeneric for Node
Source§impl JsCast for Node
impl JsCast for Node
Source§fn instanceof(__val: &JsValue) -> bool
fn instanceof(__val: &JsValue) -> bool
Source§fn unchecked_from_js(val: JsValue) -> Self
fn unchecked_from_js(val: JsValue) -> Self
Source§fn unchecked_from_js_ref(val: &JsValue) -> &Self
fn unchecked_from_js_ref(val: &JsValue) -> &Self
Source§fn is_type_of(val: &JsValue) -> bool
fn is_type_of(val: &JsValue) -> bool
JsValue provided
is a value of this type. Read moreSource§fn has_type<T>(&self) -> boolwhere
T: JsCast,
fn has_type<T>(&self) -> boolwhere
T: JsCast,
T. Read moreSource§fn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
Source§fn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
Source§fn is_instance_of<T>(&self) -> boolwhere
T: JsCast,
fn is_instance_of<T>(&self) -> boolwhere
T: JsCast,
T. Read moreSource§fn unchecked_into<T>(self) -> Twhere
T: JsCast,
fn unchecked_into<T>(self) -> Twhere
T: JsCast,
Source§fn unchecked_ref<T>(&self) -> &Twhere
T: JsCast,
fn unchecked_ref<T>(&self) -> &Twhere
T: JsCast,
impl StructuralPartialEq for Node
impl UpcastFrom<Attr> for Node
impl UpcastFrom<CharacterData> for Node
impl UpcastFrom<Comment> for Node
impl UpcastFrom<Document> for Node
impl UpcastFrom<DocumentFragment> for Node
impl UpcastFrom<DocumentType> for Node
impl UpcastFrom<Element> for Node
impl UpcastFrom<HtmlAnchorElement> for Node
impl UpcastFrom<HtmlAudioElement> for Node
impl UpcastFrom<HtmlBodyElement> for Node
impl UpcastFrom<HtmlBrElement> for Node
impl UpcastFrom<HtmlButtonElement> for Node
impl UpcastFrom<HtmlCanvasElement> for Node
impl UpcastFrom<HtmlDivElement> for Node
impl UpcastFrom<HtmlDocument> for Node
impl UpcastFrom<HtmlElement> for Node
impl UpcastFrom<HtmlFormElement> for Node
impl UpcastFrom<HtmlHeadElement> for Node
impl UpcastFrom<HtmlImageElement> for Node
impl UpcastFrom<HtmlInputElement> for Node
impl UpcastFrom<HtmlLabelElement> for Node
impl UpcastFrom<HtmlLinkElement> for Node
impl UpcastFrom<HtmlMediaElement> for Node
impl UpcastFrom<HtmlMetaElement> for Node
impl UpcastFrom<HtmlOptionElement> for Node
impl UpcastFrom<HtmlParagraphElement> for Node
impl UpcastFrom<HtmlScriptElement> for Node
impl UpcastFrom<HtmlSelectElement> for Node
impl UpcastFrom<HtmlSpanElement> for Node
impl UpcastFrom<HtmlStyleElement> for Node
impl UpcastFrom<HtmlTableCellElement> for Node
impl UpcastFrom<HtmlTableElement> for Node
impl UpcastFrom<HtmlTableRowElement> for Node
impl UpcastFrom<HtmlTemplateElement> for Node
impl UpcastFrom<HtmlTextAreaElement> for Node
impl UpcastFrom<HtmlVideoElement> for Node
impl UpcastFrom<Node> for JsValue
impl UpcastFrom<Node> for JsOption<JsValue>
impl UpcastFrom<Node> for Node
impl UpcastFrom<Node> for JsOption<Node>
impl UpcastFrom<Node> for EventTarget
impl UpcastFrom<Node> for JsOption<EventTarget>
impl UpcastFrom<Node> for Object
impl UpcastFrom<Node> for JsOption<Object>
impl UpcastFrom<ProcessingInstruction> for Node
impl UpcastFrom<ShadowRoot> for Node
impl UpcastFrom<SvgElement> for Node
impl UpcastFrom<SvgGraphicsElement> for Node
impl UpcastFrom<SvgsvgElement> for Node
impl UpcastFrom<Text> 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 UnsafeUnpin for Node
impl UnwindSafe for Node
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FromJsFuture for Twhere
T: TryFromJsValue,
impl<T> FromJsFuture for Twhere
T: TryFromJsValue,
Source§impl<T> FromWasmAbi for Twhere
T: JsGeneric,
impl<T> FromWasmAbi for Twhere
T: JsGeneric,
Source§impl<T> IntoWasmAbi for Twhere
T: JsGeneric,
impl<T> IntoWasmAbi for Twhere
T: JsGeneric,
impl<T> JsGeneric for Twhere
T: ErasableGeneric<Repr = JsValue> + UpcastFrom<T> + Upcast<JsValue> + JsCast + JsRefEncode + EncodeTypeDef + BinaryEncode + BinaryDecode + BatchableResult + 'static,
impl<T> OptionFromWasmAbi for Twhere
T: FromWasmAbi,
impl<T> OptionIntoWasmAbi for Twhere
T: IntoWasmAbi,
Source§impl<T> RefFromWasmAbi for Twhere
T: ?Sized,
impl<T> RefFromWasmAbi for Twhere
T: ?Sized,
Source§impl<T> ReturnAsync for T
impl<T> ReturnAsync for T
Source§impl<T> ReturnSync for Twhere
T: IntoWasmAbi,
impl<T> ReturnSync for Twhere
T: IntoWasmAbi,
Source§fn return_abi(self, encoder: &mut EncodedData)
fn return_abi(self, encoder: &mut EncodedData)
self as the function’s return payload.