Struct objc2_web_kit::DOMNode
source · #[repr(C)]pub struct DOMNode { /* private fields */ }
👎Deprecated
Available on crate features
DOMNode
and DOMObject
and WebScriptObject
only.Implementations§
source§impl DOMNode
impl DOMNode
DOMNodeExtensions
pub unsafe fn boundingBox(&self) -> NSRect
Available on crate feature
DOMExtensions
only.pub unsafe fn lineBoxRects(&self) -> Option<Retained<NSArray>>
Available on crate feature
DOMExtensions
only.source§impl DOMNode
impl DOMNode
pub unsafe fn nodeName(&self) -> Retained<NSString>
👎Deprecated
pub unsafe fn nodeValue(&self) -> Retained<NSString>
👎Deprecated
pub unsafe fn setNodeValue(&self, node_value: Option<&NSString>)
👎Deprecated
pub unsafe fn nodeType(&self) -> c_ushort
👎Deprecated
pub unsafe fn parentNode(&self) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn childNodes(&self) -> Option<Retained<DOMNodeList>>
👎Deprecated
Available on crate feature
DOMNodeList
only.pub unsafe fn firstChild(&self) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn lastChild(&self) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn previousSibling(&self) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn nextSibling(&self) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn ownerDocument(&self) -> Option<Retained<DOMDocument>>
👎Deprecated
Available on crate feature
DOMDocument
only.pub unsafe fn namespaceURI(&self) -> Retained<NSString>
👎Deprecated
pub unsafe fn prefix(&self) -> Retained<NSString>
👎Deprecated
pub unsafe fn setPrefix(&self, prefix: Option<&NSString>)
👎Deprecated
pub unsafe fn localName(&self) -> Retained<NSString>
👎Deprecated
pub unsafe fn attributes(&self) -> Option<Retained<DOMNamedNodeMap>>
👎Deprecated
Available on crate feature
DOMNamedNodeMap
only.pub unsafe fn baseURI(&self) -> Retained<NSString>
pub unsafe fn textContent(&self) -> Retained<NSString>
pub unsafe fn setTextContent(&self, text_content: Option<&NSString>)
pub unsafe fn parentElement(&self) -> Option<Retained<DOMElement>>
Available on crate feature
DOMElement
only.pub unsafe fn isContentEditable(&self) -> bool
pub unsafe fn insertBefore_refChild( &self, new_child: Option<&DOMNode>, ref_child: Option<&DOMNode> ) -> Option<Retained<DOMNode>>
pub unsafe fn replaceChild_oldChild( &self, new_child: Option<&DOMNode>, old_child: Option<&DOMNode> ) -> Option<Retained<DOMNode>>
pub unsafe fn removeChild( &self, old_child: Option<&DOMNode> ) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn appendChild( &self, new_child: Option<&DOMNode> ) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn hasChildNodes(&self) -> bool
👎Deprecated
pub unsafe fn cloneNode(&self, deep: bool) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn normalize(&self)
👎Deprecated
pub unsafe fn isSupported_version( &self, feature: Option<&NSString>, version: Option<&NSString> ) -> bool
pub unsafe fn hasAttributes(&self) -> bool
👎Deprecated
pub unsafe fn isSameNode(&self, other: Option<&DOMNode>) -> bool
pub unsafe fn isEqualNode(&self, other: Option<&DOMNode>) -> bool
pub unsafe fn lookupPrefix( &self, namespace_uri: Option<&NSString> ) -> Option<Retained<NSString>>
pub unsafe fn lookupNamespaceURI( &self, prefix: Option<&NSString> ) -> Option<Retained<NSString>>
pub unsafe fn isDefaultNamespace( &self, namespace_uri: Option<&NSString> ) -> bool
pub unsafe fn compareDocumentPosition( &self, other: Option<&DOMNode> ) -> c_ushort
pub unsafe fn contains(&self, other: Option<&DOMNode>) -> bool
source§impl DOMNode
impl DOMNode
DOMNodeDeprecated
pub unsafe fn insertBefore( &self, new_child: Option<&DOMNode>, ref_child: Option<&DOMNode> ) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn replaceChild( &self, new_child: Option<&DOMNode>, old_child: Option<&DOMNode> ) -> Option<Retained<DOMNode>>
👎Deprecated
pub unsafe fn isSupported( &self, feature: Option<&NSString>, version: Option<&NSString> ) -> bool
👎Deprecated
source§impl DOMNode
impl DOMNode
WebDOMNodeOperations
pub unsafe fn webArchive(&self) -> Option<Retained<WebArchive>>
👎Deprecated
Available on crate features
WebDOMOperations
and WebArchive
only.Methods from Deref<Target = DOMObject>§
pub unsafe fn sheet(&self) -> Option<Retained<DOMStyleSheet>>
Available on crate feature
DOMStyleSheet
only.Methods from Deref<Target = WebScriptObject>§
pub unsafe fn callWebScriptMethod_withArguments( &self, name: Option<&NSString>, arguments: Option<&NSArray> ) -> Option<Retained<AnyObject>>
👎Deprecated
pub unsafe fn evaluateWebScript( &self, script: Option<&NSString> ) -> Option<Retained<AnyObject>>
👎Deprecated
pub unsafe fn removeWebScriptKey(&self, name: Option<&NSString>)
👎Deprecated
pub unsafe fn stringRepresentation(&self) -> Option<Retained<NSString>>
👎Deprecated
pub unsafe fn webScriptValueAtIndex( &self, index: c_uint ) -> Option<Retained<AnyObject>>
👎Deprecated
pub unsafe fn setWebScriptValueAtIndex_value( &self, index: c_uint, value: Option<&AnyObject> )
👎Deprecated
pub unsafe fn setException(&self, description: Option<&NSString>)
👎Deprecated
Methods from Deref<Target = NSObject>§
sourcepub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
pub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
Handle messages the object doesn’t recognize.
See Apple’s documentation for details.
Methods from Deref<Target = AnyObject>§
sourcepub fn class(&self) -> &'static AnyClass
pub fn class(&self) -> &'static AnyClass
Dynamically find the class of this object.
§Example
Check that an instance of NSObject
has the precise class NSObject
.
use objc2::ClassType;
use objc2::runtime::NSObject;
let obj = NSObject::new();
assert_eq!(obj.class(), NSObject::class());
sourcepub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load
instead.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
Ivar::load
instead.Use Ivar::load
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
sourcepub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load_mut
instead.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
Ivar::load_mut
instead.Use Ivar::load_mut
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
Trait Implementations§
source§impl AsMut<DOMNode> for DOMCDATASection
Available on crate feature DOMCDATASection
only.
impl AsMut<DOMNode> for DOMCDATASection
Available on crate feature
DOMCDATASection
only.source§impl AsMut<DOMNode> for DOMCharacterData
Available on crate feature DOMCharacterData
only.
impl AsMut<DOMNode> for DOMCharacterData
Available on crate feature
DOMCharacterData
only.source§impl AsMut<DOMNode> for DOMComment
Available on crate feature DOMComment
only.
impl AsMut<DOMNode> for DOMComment
Available on crate feature
DOMComment
only.source§impl AsMut<DOMNode> for DOMDocument
Available on crate feature DOMDocument
only.
impl AsMut<DOMNode> for DOMDocument
Available on crate feature
DOMDocument
only.source§impl AsMut<DOMNode> for DOMDocumentFragment
Available on crate feature DOMDocumentFragment
only.
impl AsMut<DOMNode> for DOMDocumentFragment
Available on crate feature
DOMDocumentFragment
only.source§impl AsMut<DOMNode> for DOMDocumentType
Available on crate feature DOMDocumentType
only.
impl AsMut<DOMNode> for DOMDocumentType
Available on crate feature
DOMDocumentType
only.source§impl AsMut<DOMNode> for DOMElement
Available on crate feature DOMElement
only.
impl AsMut<DOMNode> for DOMElement
Available on crate feature
DOMElement
only.source§impl AsMut<DOMNode> for DOMEntityReference
Available on crate feature DOMEntityReference
only.
impl AsMut<DOMNode> for DOMEntityReference
Available on crate feature
DOMEntityReference
only.source§impl AsMut<DOMNode> for DOMHTMLAnchorElement
Available on crate feature DOMHTMLAnchorElement
only.
impl AsMut<DOMNode> for DOMHTMLAnchorElement
Available on crate feature
DOMHTMLAnchorElement
only.source§impl AsMut<DOMNode> for DOMHTMLAppletElement
Available on crate feature DOMHTMLAppletElement
only.
impl AsMut<DOMNode> for DOMHTMLAppletElement
Available on crate feature
DOMHTMLAppletElement
only.source§impl AsMut<DOMNode> for DOMHTMLAreaElement
Available on crate feature DOMHTMLAreaElement
only.
impl AsMut<DOMNode> for DOMHTMLAreaElement
Available on crate feature
DOMHTMLAreaElement
only.source§impl AsMut<DOMNode> for DOMHTMLBRElement
Available on crate feature DOMHTMLBRElement
only.
impl AsMut<DOMNode> for DOMHTMLBRElement
Available on crate feature
DOMHTMLBRElement
only.source§impl AsMut<DOMNode> for DOMHTMLBaseElement
Available on crate feature DOMHTMLBaseElement
only.
impl AsMut<DOMNode> for DOMHTMLBaseElement
Available on crate feature
DOMHTMLBaseElement
only.source§impl AsMut<DOMNode> for DOMHTMLBaseFontElement
Available on crate feature DOMHTMLBaseFontElement
only.
impl AsMut<DOMNode> for DOMHTMLBaseFontElement
Available on crate feature
DOMHTMLBaseFontElement
only.source§impl AsMut<DOMNode> for DOMHTMLBodyElement
Available on crate feature DOMHTMLBodyElement
only.
impl AsMut<DOMNode> for DOMHTMLBodyElement
Available on crate feature
DOMHTMLBodyElement
only.source§impl AsMut<DOMNode> for DOMHTMLButtonElement
Available on crate feature DOMHTMLButtonElement
only.
impl AsMut<DOMNode> for DOMHTMLButtonElement
Available on crate feature
DOMHTMLButtonElement
only.source§impl AsMut<DOMNode> for DOMHTMLDListElement
Available on crate feature DOMHTMLDListElement
only.
impl AsMut<DOMNode> for DOMHTMLDListElement
Available on crate feature
DOMHTMLDListElement
only.source§impl AsMut<DOMNode> for DOMHTMLDirectoryElement
Available on crate feature DOMHTMLDirectoryElement
only.
impl AsMut<DOMNode> for DOMHTMLDirectoryElement
Available on crate feature
DOMHTMLDirectoryElement
only.source§impl AsMut<DOMNode> for DOMHTMLDivElement
Available on crate feature DOMHTMLDivElement
only.
impl AsMut<DOMNode> for DOMHTMLDivElement
Available on crate feature
DOMHTMLDivElement
only.source§impl AsMut<DOMNode> for DOMHTMLDocument
Available on crate feature DOMHTMLDocument
only.
impl AsMut<DOMNode> for DOMHTMLDocument
Available on crate feature
DOMHTMLDocument
only.source§impl AsMut<DOMNode> for DOMHTMLElement
Available on crate feature DOMHTMLElement
only.
impl AsMut<DOMNode> for DOMHTMLElement
Available on crate feature
DOMHTMLElement
only.source§impl AsMut<DOMNode> for DOMHTMLEmbedElement
Available on crate feature DOMHTMLEmbedElement
only.
impl AsMut<DOMNode> for DOMHTMLEmbedElement
Available on crate feature
DOMHTMLEmbedElement
only.source§impl AsMut<DOMNode> for DOMHTMLFieldSetElement
Available on crate feature DOMHTMLFieldSetElement
only.
impl AsMut<DOMNode> for DOMHTMLFieldSetElement
Available on crate feature
DOMHTMLFieldSetElement
only.source§impl AsMut<DOMNode> for DOMHTMLFontElement
Available on crate feature DOMHTMLFontElement
only.
impl AsMut<DOMNode> for DOMHTMLFontElement
Available on crate feature
DOMHTMLFontElement
only.source§impl AsMut<DOMNode> for DOMHTMLFormElement
Available on crate feature DOMHTMLFormElement
only.
impl AsMut<DOMNode> for DOMHTMLFormElement
Available on crate feature
DOMHTMLFormElement
only.source§impl AsMut<DOMNode> for DOMHTMLFrameElement
Available on crate feature DOMHTMLFrameElement
only.
impl AsMut<DOMNode> for DOMHTMLFrameElement
Available on crate feature
DOMHTMLFrameElement
only.source§impl AsMut<DOMNode> for DOMHTMLFrameSetElement
Available on crate feature DOMHTMLFrameSetElement
only.
impl AsMut<DOMNode> for DOMHTMLFrameSetElement
Available on crate feature
DOMHTMLFrameSetElement
only.source§impl AsMut<DOMNode> for DOMHTMLHRElement
Available on crate feature DOMHTMLHRElement
only.
impl AsMut<DOMNode> for DOMHTMLHRElement
Available on crate feature
DOMHTMLHRElement
only.source§impl AsMut<DOMNode> for DOMHTMLHeadElement
Available on crate feature DOMHTMLHeadElement
only.
impl AsMut<DOMNode> for DOMHTMLHeadElement
Available on crate feature
DOMHTMLHeadElement
only.source§impl AsMut<DOMNode> for DOMHTMLHeadingElement
Available on crate feature DOMHTMLHeadingElement
only.
impl AsMut<DOMNode> for DOMHTMLHeadingElement
Available on crate feature
DOMHTMLHeadingElement
only.source§impl AsMut<DOMNode> for DOMHTMLHtmlElement
Available on crate feature DOMHTMLHtmlElement
only.
impl AsMut<DOMNode> for DOMHTMLHtmlElement
Available on crate feature
DOMHTMLHtmlElement
only.source§impl AsMut<DOMNode> for DOMHTMLIFrameElement
Available on crate feature DOMHTMLIFrameElement
only.
impl AsMut<DOMNode> for DOMHTMLIFrameElement
Available on crate feature
DOMHTMLIFrameElement
only.source§impl AsMut<DOMNode> for DOMHTMLImageElement
Available on crate feature DOMHTMLImageElement
only.
impl AsMut<DOMNode> for DOMHTMLImageElement
Available on crate feature
DOMHTMLImageElement
only.source§impl AsMut<DOMNode> for DOMHTMLInputElement
Available on crate feature DOMHTMLInputElement
only.
impl AsMut<DOMNode> for DOMHTMLInputElement
Available on crate feature
DOMHTMLInputElement
only.source§impl AsMut<DOMNode> for DOMHTMLLIElement
Available on crate feature DOMHTMLLIElement
only.
impl AsMut<DOMNode> for DOMHTMLLIElement
Available on crate feature
DOMHTMLLIElement
only.source§impl AsMut<DOMNode> for DOMHTMLLabelElement
Available on crate feature DOMHTMLLabelElement
only.
impl AsMut<DOMNode> for DOMHTMLLabelElement
Available on crate feature
DOMHTMLLabelElement
only.source§impl AsMut<DOMNode> for DOMHTMLLegendElement
Available on crate feature DOMHTMLLegendElement
only.
impl AsMut<DOMNode> for DOMHTMLLegendElement
Available on crate feature
DOMHTMLLegendElement
only.source§impl AsMut<DOMNode> for DOMHTMLLinkElement
Available on crate feature DOMHTMLLinkElement
only.
impl AsMut<DOMNode> for DOMHTMLLinkElement
Available on crate feature
DOMHTMLLinkElement
only.source§impl AsMut<DOMNode> for DOMHTMLMapElement
Available on crate feature DOMHTMLMapElement
only.
impl AsMut<DOMNode> for DOMHTMLMapElement
Available on crate feature
DOMHTMLMapElement
only.source§impl AsMut<DOMNode> for DOMHTMLMarqueeElement
Available on crate feature DOMHTMLMarqueeElement
only.
impl AsMut<DOMNode> for DOMHTMLMarqueeElement
Available on crate feature
DOMHTMLMarqueeElement
only.source§impl AsMut<DOMNode> for DOMHTMLMenuElement
Available on crate feature DOMHTMLMenuElement
only.
impl AsMut<DOMNode> for DOMHTMLMenuElement
Available on crate feature
DOMHTMLMenuElement
only.source§impl AsMut<DOMNode> for DOMHTMLMetaElement
Available on crate feature DOMHTMLMetaElement
only.
impl AsMut<DOMNode> for DOMHTMLMetaElement
Available on crate feature
DOMHTMLMetaElement
only.source§impl AsMut<DOMNode> for DOMHTMLModElement
Available on crate feature DOMHTMLModElement
only.
impl AsMut<DOMNode> for DOMHTMLModElement
Available on crate feature
DOMHTMLModElement
only.source§impl AsMut<DOMNode> for DOMHTMLOListElement
Available on crate feature DOMHTMLOListElement
only.
impl AsMut<DOMNode> for DOMHTMLOListElement
Available on crate feature
DOMHTMLOListElement
only.source§impl AsMut<DOMNode> for DOMHTMLObjectElement
Available on crate feature DOMHTMLObjectElement
only.
impl AsMut<DOMNode> for DOMHTMLObjectElement
Available on crate feature
DOMHTMLObjectElement
only.source§impl AsMut<DOMNode> for DOMHTMLOptGroupElement
Available on crate feature DOMHTMLOptGroupElement
only.
impl AsMut<DOMNode> for DOMHTMLOptGroupElement
Available on crate feature
DOMHTMLOptGroupElement
only.source§impl AsMut<DOMNode> for DOMHTMLOptionElement
Available on crate feature DOMHTMLOptionElement
only.
impl AsMut<DOMNode> for DOMHTMLOptionElement
Available on crate feature
DOMHTMLOptionElement
only.source§impl AsMut<DOMNode> for DOMHTMLParagraphElement
Available on crate feature DOMHTMLParagraphElement
only.
impl AsMut<DOMNode> for DOMHTMLParagraphElement
Available on crate feature
DOMHTMLParagraphElement
only.source§impl AsMut<DOMNode> for DOMHTMLParamElement
Available on crate feature DOMHTMLParamElement
only.
impl AsMut<DOMNode> for DOMHTMLParamElement
Available on crate feature
DOMHTMLParamElement
only.source§impl AsMut<DOMNode> for DOMHTMLPreElement
Available on crate feature DOMHTMLPreElement
only.
impl AsMut<DOMNode> for DOMHTMLPreElement
Available on crate feature
DOMHTMLPreElement
only.source§impl AsMut<DOMNode> for DOMHTMLQuoteElement
Available on crate feature DOMHTMLQuoteElement
only.
impl AsMut<DOMNode> for DOMHTMLQuoteElement
Available on crate feature
DOMHTMLQuoteElement
only.source§impl AsMut<DOMNode> for DOMHTMLScriptElement
Available on crate feature DOMHTMLScriptElement
only.
impl AsMut<DOMNode> for DOMHTMLScriptElement
Available on crate feature
DOMHTMLScriptElement
only.source§impl AsMut<DOMNode> for DOMHTMLSelectElement
Available on crate feature DOMHTMLSelectElement
only.
impl AsMut<DOMNode> for DOMHTMLSelectElement
Available on crate feature
DOMHTMLSelectElement
only.source§impl AsMut<DOMNode> for DOMHTMLStyleElement
Available on crate feature DOMHTMLStyleElement
only.
impl AsMut<DOMNode> for DOMHTMLStyleElement
Available on crate feature
DOMHTMLStyleElement
only.source§impl AsMut<DOMNode> for DOMHTMLTableCaptionElement
Available on crate feature DOMHTMLTableCaptionElement
only.
impl AsMut<DOMNode> for DOMHTMLTableCaptionElement
Available on crate feature
DOMHTMLTableCaptionElement
only.source§impl AsMut<DOMNode> for DOMHTMLTableCellElement
Available on crate feature DOMHTMLTableCellElement
only.
impl AsMut<DOMNode> for DOMHTMLTableCellElement
Available on crate feature
DOMHTMLTableCellElement
only.source§impl AsMut<DOMNode> for DOMHTMLTableColElement
Available on crate feature DOMHTMLTableColElement
only.
impl AsMut<DOMNode> for DOMHTMLTableColElement
Available on crate feature
DOMHTMLTableColElement
only.source§impl AsMut<DOMNode> for DOMHTMLTableElement
Available on crate feature DOMHTMLTableElement
only.
impl AsMut<DOMNode> for DOMHTMLTableElement
Available on crate feature
DOMHTMLTableElement
only.source§impl AsMut<DOMNode> for DOMHTMLTableRowElement
Available on crate feature DOMHTMLTableRowElement
only.
impl AsMut<DOMNode> for DOMHTMLTableRowElement
Available on crate feature
DOMHTMLTableRowElement
only.source§impl AsMut<DOMNode> for DOMHTMLTableSectionElement
Available on crate feature DOMHTMLTableSectionElement
only.
impl AsMut<DOMNode> for DOMHTMLTableSectionElement
Available on crate feature
DOMHTMLTableSectionElement
only.source§impl AsMut<DOMNode> for DOMHTMLTextAreaElement
Available on crate feature DOMHTMLTextAreaElement
only.
impl AsMut<DOMNode> for DOMHTMLTextAreaElement
Available on crate feature
DOMHTMLTextAreaElement
only.source§impl AsMut<DOMNode> for DOMHTMLTitleElement
Available on crate feature DOMHTMLTitleElement
only.
impl AsMut<DOMNode> for DOMHTMLTitleElement
Available on crate feature
DOMHTMLTitleElement
only.source§impl AsMut<DOMNode> for DOMHTMLUListElement
Available on crate feature DOMHTMLUListElement
only.
impl AsMut<DOMNode> for DOMHTMLUListElement
Available on crate feature
DOMHTMLUListElement
only.source§impl AsMut<DOMNode> for DOMProcessingInstruction
Available on crate feature DOMProcessingInstruction
only.
impl AsMut<DOMNode> for DOMProcessingInstruction
Available on crate feature
DOMProcessingInstruction
only.source§impl AsMut<WebScriptObject> for DOMNode
impl AsMut<WebScriptObject> for DOMNode
source§fn as_mut(&mut self) -> &mut WebScriptObject
fn as_mut(&mut self) -> &mut WebScriptObject
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsRef<DOMNode> for DOMCDATASection
Available on crate feature DOMCDATASection
only.
impl AsRef<DOMNode> for DOMCDATASection
Available on crate feature
DOMCDATASection
only.source§impl AsRef<DOMNode> for DOMCharacterData
Available on crate feature DOMCharacterData
only.
impl AsRef<DOMNode> for DOMCharacterData
Available on crate feature
DOMCharacterData
only.source§impl AsRef<DOMNode> for DOMComment
Available on crate feature DOMComment
only.
impl AsRef<DOMNode> for DOMComment
Available on crate feature
DOMComment
only.source§impl AsRef<DOMNode> for DOMDocument
Available on crate feature DOMDocument
only.
impl AsRef<DOMNode> for DOMDocument
Available on crate feature
DOMDocument
only.source§impl AsRef<DOMNode> for DOMDocumentFragment
Available on crate feature DOMDocumentFragment
only.
impl AsRef<DOMNode> for DOMDocumentFragment
Available on crate feature
DOMDocumentFragment
only.source§impl AsRef<DOMNode> for DOMDocumentType
Available on crate feature DOMDocumentType
only.
impl AsRef<DOMNode> for DOMDocumentType
Available on crate feature
DOMDocumentType
only.source§impl AsRef<DOMNode> for DOMElement
Available on crate feature DOMElement
only.
impl AsRef<DOMNode> for DOMElement
Available on crate feature
DOMElement
only.source§impl AsRef<DOMNode> for DOMEntityReference
Available on crate feature DOMEntityReference
only.
impl AsRef<DOMNode> for DOMEntityReference
Available on crate feature
DOMEntityReference
only.source§impl AsRef<DOMNode> for DOMHTMLAnchorElement
Available on crate feature DOMHTMLAnchorElement
only.
impl AsRef<DOMNode> for DOMHTMLAnchorElement
Available on crate feature
DOMHTMLAnchorElement
only.source§impl AsRef<DOMNode> for DOMHTMLAppletElement
Available on crate feature DOMHTMLAppletElement
only.
impl AsRef<DOMNode> for DOMHTMLAppletElement
Available on crate feature
DOMHTMLAppletElement
only.source§impl AsRef<DOMNode> for DOMHTMLAreaElement
Available on crate feature DOMHTMLAreaElement
only.
impl AsRef<DOMNode> for DOMHTMLAreaElement
Available on crate feature
DOMHTMLAreaElement
only.source§impl AsRef<DOMNode> for DOMHTMLBRElement
Available on crate feature DOMHTMLBRElement
only.
impl AsRef<DOMNode> for DOMHTMLBRElement
Available on crate feature
DOMHTMLBRElement
only.source§impl AsRef<DOMNode> for DOMHTMLBaseElement
Available on crate feature DOMHTMLBaseElement
only.
impl AsRef<DOMNode> for DOMHTMLBaseElement
Available on crate feature
DOMHTMLBaseElement
only.source§impl AsRef<DOMNode> for DOMHTMLBaseFontElement
Available on crate feature DOMHTMLBaseFontElement
only.
impl AsRef<DOMNode> for DOMHTMLBaseFontElement
Available on crate feature
DOMHTMLBaseFontElement
only.source§impl AsRef<DOMNode> for DOMHTMLBodyElement
Available on crate feature DOMHTMLBodyElement
only.
impl AsRef<DOMNode> for DOMHTMLBodyElement
Available on crate feature
DOMHTMLBodyElement
only.source§impl AsRef<DOMNode> for DOMHTMLButtonElement
Available on crate feature DOMHTMLButtonElement
only.
impl AsRef<DOMNode> for DOMHTMLButtonElement
Available on crate feature
DOMHTMLButtonElement
only.source§impl AsRef<DOMNode> for DOMHTMLDListElement
Available on crate feature DOMHTMLDListElement
only.
impl AsRef<DOMNode> for DOMHTMLDListElement
Available on crate feature
DOMHTMLDListElement
only.source§impl AsRef<DOMNode> for DOMHTMLDirectoryElement
Available on crate feature DOMHTMLDirectoryElement
only.
impl AsRef<DOMNode> for DOMHTMLDirectoryElement
Available on crate feature
DOMHTMLDirectoryElement
only.source§impl AsRef<DOMNode> for DOMHTMLDivElement
Available on crate feature DOMHTMLDivElement
only.
impl AsRef<DOMNode> for DOMHTMLDivElement
Available on crate feature
DOMHTMLDivElement
only.source§impl AsRef<DOMNode> for DOMHTMLDocument
Available on crate feature DOMHTMLDocument
only.
impl AsRef<DOMNode> for DOMHTMLDocument
Available on crate feature
DOMHTMLDocument
only.source§impl AsRef<DOMNode> for DOMHTMLElement
Available on crate feature DOMHTMLElement
only.
impl AsRef<DOMNode> for DOMHTMLElement
Available on crate feature
DOMHTMLElement
only.source§impl AsRef<DOMNode> for DOMHTMLEmbedElement
Available on crate feature DOMHTMLEmbedElement
only.
impl AsRef<DOMNode> for DOMHTMLEmbedElement
Available on crate feature
DOMHTMLEmbedElement
only.source§impl AsRef<DOMNode> for DOMHTMLFieldSetElement
Available on crate feature DOMHTMLFieldSetElement
only.
impl AsRef<DOMNode> for DOMHTMLFieldSetElement
Available on crate feature
DOMHTMLFieldSetElement
only.source§impl AsRef<DOMNode> for DOMHTMLFontElement
Available on crate feature DOMHTMLFontElement
only.
impl AsRef<DOMNode> for DOMHTMLFontElement
Available on crate feature
DOMHTMLFontElement
only.source§impl AsRef<DOMNode> for DOMHTMLFormElement
Available on crate feature DOMHTMLFormElement
only.
impl AsRef<DOMNode> for DOMHTMLFormElement
Available on crate feature
DOMHTMLFormElement
only.source§impl AsRef<DOMNode> for DOMHTMLFrameElement
Available on crate feature DOMHTMLFrameElement
only.
impl AsRef<DOMNode> for DOMHTMLFrameElement
Available on crate feature
DOMHTMLFrameElement
only.source§impl AsRef<DOMNode> for DOMHTMLFrameSetElement
Available on crate feature DOMHTMLFrameSetElement
only.
impl AsRef<DOMNode> for DOMHTMLFrameSetElement
Available on crate feature
DOMHTMLFrameSetElement
only.source§impl AsRef<DOMNode> for DOMHTMLHRElement
Available on crate feature DOMHTMLHRElement
only.
impl AsRef<DOMNode> for DOMHTMLHRElement
Available on crate feature
DOMHTMLHRElement
only.source§impl AsRef<DOMNode> for DOMHTMLHeadElement
Available on crate feature DOMHTMLHeadElement
only.
impl AsRef<DOMNode> for DOMHTMLHeadElement
Available on crate feature
DOMHTMLHeadElement
only.source§impl AsRef<DOMNode> for DOMHTMLHeadingElement
Available on crate feature DOMHTMLHeadingElement
only.
impl AsRef<DOMNode> for DOMHTMLHeadingElement
Available on crate feature
DOMHTMLHeadingElement
only.source§impl AsRef<DOMNode> for DOMHTMLHtmlElement
Available on crate feature DOMHTMLHtmlElement
only.
impl AsRef<DOMNode> for DOMHTMLHtmlElement
Available on crate feature
DOMHTMLHtmlElement
only.source§impl AsRef<DOMNode> for DOMHTMLIFrameElement
Available on crate feature DOMHTMLIFrameElement
only.
impl AsRef<DOMNode> for DOMHTMLIFrameElement
Available on crate feature
DOMHTMLIFrameElement
only.source§impl AsRef<DOMNode> for DOMHTMLImageElement
Available on crate feature DOMHTMLImageElement
only.
impl AsRef<DOMNode> for DOMHTMLImageElement
Available on crate feature
DOMHTMLImageElement
only.source§impl AsRef<DOMNode> for DOMHTMLInputElement
Available on crate feature DOMHTMLInputElement
only.
impl AsRef<DOMNode> for DOMHTMLInputElement
Available on crate feature
DOMHTMLInputElement
only.source§impl AsRef<DOMNode> for DOMHTMLLIElement
Available on crate feature DOMHTMLLIElement
only.
impl AsRef<DOMNode> for DOMHTMLLIElement
Available on crate feature
DOMHTMLLIElement
only.source§impl AsRef<DOMNode> for DOMHTMLLabelElement
Available on crate feature DOMHTMLLabelElement
only.
impl AsRef<DOMNode> for DOMHTMLLabelElement
Available on crate feature
DOMHTMLLabelElement
only.source§impl AsRef<DOMNode> for DOMHTMLLegendElement
Available on crate feature DOMHTMLLegendElement
only.
impl AsRef<DOMNode> for DOMHTMLLegendElement
Available on crate feature
DOMHTMLLegendElement
only.source§impl AsRef<DOMNode> for DOMHTMLLinkElement
Available on crate feature DOMHTMLLinkElement
only.
impl AsRef<DOMNode> for DOMHTMLLinkElement
Available on crate feature
DOMHTMLLinkElement
only.source§impl AsRef<DOMNode> for DOMHTMLMapElement
Available on crate feature DOMHTMLMapElement
only.
impl AsRef<DOMNode> for DOMHTMLMapElement
Available on crate feature
DOMHTMLMapElement
only.source§impl AsRef<DOMNode> for DOMHTMLMarqueeElement
Available on crate feature DOMHTMLMarqueeElement
only.
impl AsRef<DOMNode> for DOMHTMLMarqueeElement
Available on crate feature
DOMHTMLMarqueeElement
only.source§impl AsRef<DOMNode> for DOMHTMLMenuElement
Available on crate feature DOMHTMLMenuElement
only.
impl AsRef<DOMNode> for DOMHTMLMenuElement
Available on crate feature
DOMHTMLMenuElement
only.source§impl AsRef<DOMNode> for DOMHTMLMetaElement
Available on crate feature DOMHTMLMetaElement
only.
impl AsRef<DOMNode> for DOMHTMLMetaElement
Available on crate feature
DOMHTMLMetaElement
only.source§impl AsRef<DOMNode> for DOMHTMLModElement
Available on crate feature DOMHTMLModElement
only.
impl AsRef<DOMNode> for DOMHTMLModElement
Available on crate feature
DOMHTMLModElement
only.source§impl AsRef<DOMNode> for DOMHTMLOListElement
Available on crate feature DOMHTMLOListElement
only.
impl AsRef<DOMNode> for DOMHTMLOListElement
Available on crate feature
DOMHTMLOListElement
only.source§impl AsRef<DOMNode> for DOMHTMLObjectElement
Available on crate feature DOMHTMLObjectElement
only.
impl AsRef<DOMNode> for DOMHTMLObjectElement
Available on crate feature
DOMHTMLObjectElement
only.source§impl AsRef<DOMNode> for DOMHTMLOptGroupElement
Available on crate feature DOMHTMLOptGroupElement
only.
impl AsRef<DOMNode> for DOMHTMLOptGroupElement
Available on crate feature
DOMHTMLOptGroupElement
only.source§impl AsRef<DOMNode> for DOMHTMLOptionElement
Available on crate feature DOMHTMLOptionElement
only.
impl AsRef<DOMNode> for DOMHTMLOptionElement
Available on crate feature
DOMHTMLOptionElement
only.source§impl AsRef<DOMNode> for DOMHTMLParagraphElement
Available on crate feature DOMHTMLParagraphElement
only.
impl AsRef<DOMNode> for DOMHTMLParagraphElement
Available on crate feature
DOMHTMLParagraphElement
only.source§impl AsRef<DOMNode> for DOMHTMLParamElement
Available on crate feature DOMHTMLParamElement
only.
impl AsRef<DOMNode> for DOMHTMLParamElement
Available on crate feature
DOMHTMLParamElement
only.source§impl AsRef<DOMNode> for DOMHTMLPreElement
Available on crate feature DOMHTMLPreElement
only.
impl AsRef<DOMNode> for DOMHTMLPreElement
Available on crate feature
DOMHTMLPreElement
only.source§impl AsRef<DOMNode> for DOMHTMLQuoteElement
Available on crate feature DOMHTMLQuoteElement
only.
impl AsRef<DOMNode> for DOMHTMLQuoteElement
Available on crate feature
DOMHTMLQuoteElement
only.source§impl AsRef<DOMNode> for DOMHTMLScriptElement
Available on crate feature DOMHTMLScriptElement
only.
impl AsRef<DOMNode> for DOMHTMLScriptElement
Available on crate feature
DOMHTMLScriptElement
only.source§impl AsRef<DOMNode> for DOMHTMLSelectElement
Available on crate feature DOMHTMLSelectElement
only.
impl AsRef<DOMNode> for DOMHTMLSelectElement
Available on crate feature
DOMHTMLSelectElement
only.source§impl AsRef<DOMNode> for DOMHTMLStyleElement
Available on crate feature DOMHTMLStyleElement
only.
impl AsRef<DOMNode> for DOMHTMLStyleElement
Available on crate feature
DOMHTMLStyleElement
only.source§impl AsRef<DOMNode> for DOMHTMLTableCaptionElement
Available on crate feature DOMHTMLTableCaptionElement
only.
impl AsRef<DOMNode> for DOMHTMLTableCaptionElement
Available on crate feature
DOMHTMLTableCaptionElement
only.source§impl AsRef<DOMNode> for DOMHTMLTableCellElement
Available on crate feature DOMHTMLTableCellElement
only.
impl AsRef<DOMNode> for DOMHTMLTableCellElement
Available on crate feature
DOMHTMLTableCellElement
only.source§impl AsRef<DOMNode> for DOMHTMLTableColElement
Available on crate feature DOMHTMLTableColElement
only.
impl AsRef<DOMNode> for DOMHTMLTableColElement
Available on crate feature
DOMHTMLTableColElement
only.source§impl AsRef<DOMNode> for DOMHTMLTableElement
Available on crate feature DOMHTMLTableElement
only.
impl AsRef<DOMNode> for DOMHTMLTableElement
Available on crate feature
DOMHTMLTableElement
only.source§impl AsRef<DOMNode> for DOMHTMLTableRowElement
Available on crate feature DOMHTMLTableRowElement
only.
impl AsRef<DOMNode> for DOMHTMLTableRowElement
Available on crate feature
DOMHTMLTableRowElement
only.source§impl AsRef<DOMNode> for DOMHTMLTableSectionElement
Available on crate feature DOMHTMLTableSectionElement
only.
impl AsRef<DOMNode> for DOMHTMLTableSectionElement
Available on crate feature
DOMHTMLTableSectionElement
only.source§impl AsRef<DOMNode> for DOMHTMLTextAreaElement
Available on crate feature DOMHTMLTextAreaElement
only.
impl AsRef<DOMNode> for DOMHTMLTextAreaElement
Available on crate feature
DOMHTMLTextAreaElement
only.source§impl AsRef<DOMNode> for DOMHTMLTitleElement
Available on crate feature DOMHTMLTitleElement
only.
impl AsRef<DOMNode> for DOMHTMLTitleElement
Available on crate feature
DOMHTMLTitleElement
only.source§impl AsRef<DOMNode> for DOMHTMLUListElement
Available on crate feature DOMHTMLUListElement
only.
impl AsRef<DOMNode> for DOMHTMLUListElement
Available on crate feature
DOMHTMLUListElement
only.source§impl AsRef<DOMNode> for DOMProcessingInstruction
Available on crate feature DOMProcessingInstruction
only.
impl AsRef<DOMNode> for DOMProcessingInstruction
Available on crate feature
DOMProcessingInstruction
only.source§impl AsRef<WebScriptObject> for DOMNode
impl AsRef<WebScriptObject> for DOMNode
source§fn as_ref(&self) -> &WebScriptObject
fn as_ref(&self) -> &WebScriptObject
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Borrow<DOMNode> for DOMCDATASection
Available on crate feature DOMCDATASection
only.
impl Borrow<DOMNode> for DOMCDATASection
Available on crate feature
DOMCDATASection
only.source§impl Borrow<DOMNode> for DOMCharacterData
Available on crate feature DOMCharacterData
only.
impl Borrow<DOMNode> for DOMCharacterData
Available on crate feature
DOMCharacterData
only.source§impl Borrow<DOMNode> for DOMComment
Available on crate feature DOMComment
only.
impl Borrow<DOMNode> for DOMComment
Available on crate feature
DOMComment
only.source§impl Borrow<DOMNode> for DOMDocument
Available on crate feature DOMDocument
only.
impl Borrow<DOMNode> for DOMDocument
Available on crate feature
DOMDocument
only.source§impl Borrow<DOMNode> for DOMDocumentFragment
Available on crate feature DOMDocumentFragment
only.
impl Borrow<DOMNode> for DOMDocumentFragment
Available on crate feature
DOMDocumentFragment
only.source§impl Borrow<DOMNode> for DOMDocumentType
Available on crate feature DOMDocumentType
only.
impl Borrow<DOMNode> for DOMDocumentType
Available on crate feature
DOMDocumentType
only.source§impl Borrow<DOMNode> for DOMElement
Available on crate feature DOMElement
only.
impl Borrow<DOMNode> for DOMElement
Available on crate feature
DOMElement
only.source§impl Borrow<DOMNode> for DOMEntityReference
Available on crate feature DOMEntityReference
only.
impl Borrow<DOMNode> for DOMEntityReference
Available on crate feature
DOMEntityReference
only.source§impl Borrow<DOMNode> for DOMHTMLAnchorElement
Available on crate feature DOMHTMLAnchorElement
only.
impl Borrow<DOMNode> for DOMHTMLAnchorElement
Available on crate feature
DOMHTMLAnchorElement
only.source§impl Borrow<DOMNode> for DOMHTMLAppletElement
Available on crate feature DOMHTMLAppletElement
only.
impl Borrow<DOMNode> for DOMHTMLAppletElement
Available on crate feature
DOMHTMLAppletElement
only.source§impl Borrow<DOMNode> for DOMHTMLAreaElement
Available on crate feature DOMHTMLAreaElement
only.
impl Borrow<DOMNode> for DOMHTMLAreaElement
Available on crate feature
DOMHTMLAreaElement
only.source§impl Borrow<DOMNode> for DOMHTMLBRElement
Available on crate feature DOMHTMLBRElement
only.
impl Borrow<DOMNode> for DOMHTMLBRElement
Available on crate feature
DOMHTMLBRElement
only.source§impl Borrow<DOMNode> for DOMHTMLBaseElement
Available on crate feature DOMHTMLBaseElement
only.
impl Borrow<DOMNode> for DOMHTMLBaseElement
Available on crate feature
DOMHTMLBaseElement
only.source§impl Borrow<DOMNode> for DOMHTMLBaseFontElement
Available on crate feature DOMHTMLBaseFontElement
only.
impl Borrow<DOMNode> for DOMHTMLBaseFontElement
Available on crate feature
DOMHTMLBaseFontElement
only.source§impl Borrow<DOMNode> for DOMHTMLBodyElement
Available on crate feature DOMHTMLBodyElement
only.
impl Borrow<DOMNode> for DOMHTMLBodyElement
Available on crate feature
DOMHTMLBodyElement
only.source§impl Borrow<DOMNode> for DOMHTMLButtonElement
Available on crate feature DOMHTMLButtonElement
only.
impl Borrow<DOMNode> for DOMHTMLButtonElement
Available on crate feature
DOMHTMLButtonElement
only.source§impl Borrow<DOMNode> for DOMHTMLDListElement
Available on crate feature DOMHTMLDListElement
only.
impl Borrow<DOMNode> for DOMHTMLDListElement
Available on crate feature
DOMHTMLDListElement
only.source§impl Borrow<DOMNode> for DOMHTMLDirectoryElement
Available on crate feature DOMHTMLDirectoryElement
only.
impl Borrow<DOMNode> for DOMHTMLDirectoryElement
Available on crate feature
DOMHTMLDirectoryElement
only.source§impl Borrow<DOMNode> for DOMHTMLDivElement
Available on crate feature DOMHTMLDivElement
only.
impl Borrow<DOMNode> for DOMHTMLDivElement
Available on crate feature
DOMHTMLDivElement
only.source§impl Borrow<DOMNode> for DOMHTMLDocument
Available on crate feature DOMHTMLDocument
only.
impl Borrow<DOMNode> for DOMHTMLDocument
Available on crate feature
DOMHTMLDocument
only.source§impl Borrow<DOMNode> for DOMHTMLElement
Available on crate feature DOMHTMLElement
only.
impl Borrow<DOMNode> for DOMHTMLElement
Available on crate feature
DOMHTMLElement
only.source§impl Borrow<DOMNode> for DOMHTMLEmbedElement
Available on crate feature DOMHTMLEmbedElement
only.
impl Borrow<DOMNode> for DOMHTMLEmbedElement
Available on crate feature
DOMHTMLEmbedElement
only.source§impl Borrow<DOMNode> for DOMHTMLFieldSetElement
Available on crate feature DOMHTMLFieldSetElement
only.
impl Borrow<DOMNode> for DOMHTMLFieldSetElement
Available on crate feature
DOMHTMLFieldSetElement
only.source§impl Borrow<DOMNode> for DOMHTMLFontElement
Available on crate feature DOMHTMLFontElement
only.
impl Borrow<DOMNode> for DOMHTMLFontElement
Available on crate feature
DOMHTMLFontElement
only.source§impl Borrow<DOMNode> for DOMHTMLFormElement
Available on crate feature DOMHTMLFormElement
only.
impl Borrow<DOMNode> for DOMHTMLFormElement
Available on crate feature
DOMHTMLFormElement
only.source§impl Borrow<DOMNode> for DOMHTMLFrameElement
Available on crate feature DOMHTMLFrameElement
only.
impl Borrow<DOMNode> for DOMHTMLFrameElement
Available on crate feature
DOMHTMLFrameElement
only.source§impl Borrow<DOMNode> for DOMHTMLFrameSetElement
Available on crate feature DOMHTMLFrameSetElement
only.
impl Borrow<DOMNode> for DOMHTMLFrameSetElement
Available on crate feature
DOMHTMLFrameSetElement
only.source§impl Borrow<DOMNode> for DOMHTMLHRElement
Available on crate feature DOMHTMLHRElement
only.
impl Borrow<DOMNode> for DOMHTMLHRElement
Available on crate feature
DOMHTMLHRElement
only.source§impl Borrow<DOMNode> for DOMHTMLHeadElement
Available on crate feature DOMHTMLHeadElement
only.
impl Borrow<DOMNode> for DOMHTMLHeadElement
Available on crate feature
DOMHTMLHeadElement
only.source§impl Borrow<DOMNode> for DOMHTMLHeadingElement
Available on crate feature DOMHTMLHeadingElement
only.
impl Borrow<DOMNode> for DOMHTMLHeadingElement
Available on crate feature
DOMHTMLHeadingElement
only.source§impl Borrow<DOMNode> for DOMHTMLHtmlElement
Available on crate feature DOMHTMLHtmlElement
only.
impl Borrow<DOMNode> for DOMHTMLHtmlElement
Available on crate feature
DOMHTMLHtmlElement
only.source§impl Borrow<DOMNode> for DOMHTMLIFrameElement
Available on crate feature DOMHTMLIFrameElement
only.
impl Borrow<DOMNode> for DOMHTMLIFrameElement
Available on crate feature
DOMHTMLIFrameElement
only.source§impl Borrow<DOMNode> for DOMHTMLImageElement
Available on crate feature DOMHTMLImageElement
only.
impl Borrow<DOMNode> for DOMHTMLImageElement
Available on crate feature
DOMHTMLImageElement
only.source§impl Borrow<DOMNode> for DOMHTMLInputElement
Available on crate feature DOMHTMLInputElement
only.
impl Borrow<DOMNode> for DOMHTMLInputElement
Available on crate feature
DOMHTMLInputElement
only.source§impl Borrow<DOMNode> for DOMHTMLLIElement
Available on crate feature DOMHTMLLIElement
only.
impl Borrow<DOMNode> for DOMHTMLLIElement
Available on crate feature
DOMHTMLLIElement
only.source§impl Borrow<DOMNode> for DOMHTMLLabelElement
Available on crate feature DOMHTMLLabelElement
only.
impl Borrow<DOMNode> for DOMHTMLLabelElement
Available on crate feature
DOMHTMLLabelElement
only.source§impl Borrow<DOMNode> for DOMHTMLLegendElement
Available on crate feature DOMHTMLLegendElement
only.
impl Borrow<DOMNode> for DOMHTMLLegendElement
Available on crate feature
DOMHTMLLegendElement
only.source§impl Borrow<DOMNode> for DOMHTMLLinkElement
Available on crate feature DOMHTMLLinkElement
only.
impl Borrow<DOMNode> for DOMHTMLLinkElement
Available on crate feature
DOMHTMLLinkElement
only.source§impl Borrow<DOMNode> for DOMHTMLMapElement
Available on crate feature DOMHTMLMapElement
only.
impl Borrow<DOMNode> for DOMHTMLMapElement
Available on crate feature
DOMHTMLMapElement
only.source§impl Borrow<DOMNode> for DOMHTMLMarqueeElement
Available on crate feature DOMHTMLMarqueeElement
only.
impl Borrow<DOMNode> for DOMHTMLMarqueeElement
Available on crate feature
DOMHTMLMarqueeElement
only.source§impl Borrow<DOMNode> for DOMHTMLMenuElement
Available on crate feature DOMHTMLMenuElement
only.
impl Borrow<DOMNode> for DOMHTMLMenuElement
Available on crate feature
DOMHTMLMenuElement
only.source§impl Borrow<DOMNode> for DOMHTMLMetaElement
Available on crate feature DOMHTMLMetaElement
only.
impl Borrow<DOMNode> for DOMHTMLMetaElement
Available on crate feature
DOMHTMLMetaElement
only.source§impl Borrow<DOMNode> for DOMHTMLModElement
Available on crate feature DOMHTMLModElement
only.
impl Borrow<DOMNode> for DOMHTMLModElement
Available on crate feature
DOMHTMLModElement
only.source§impl Borrow<DOMNode> for DOMHTMLOListElement
Available on crate feature DOMHTMLOListElement
only.
impl Borrow<DOMNode> for DOMHTMLOListElement
Available on crate feature
DOMHTMLOListElement
only.source§impl Borrow<DOMNode> for DOMHTMLObjectElement
Available on crate feature DOMHTMLObjectElement
only.
impl Borrow<DOMNode> for DOMHTMLObjectElement
Available on crate feature
DOMHTMLObjectElement
only.source§impl Borrow<DOMNode> for DOMHTMLOptGroupElement
Available on crate feature DOMHTMLOptGroupElement
only.
impl Borrow<DOMNode> for DOMHTMLOptGroupElement
Available on crate feature
DOMHTMLOptGroupElement
only.source§impl Borrow<DOMNode> for DOMHTMLOptionElement
Available on crate feature DOMHTMLOptionElement
only.
impl Borrow<DOMNode> for DOMHTMLOptionElement
Available on crate feature
DOMHTMLOptionElement
only.source§impl Borrow<DOMNode> for DOMHTMLParagraphElement
Available on crate feature DOMHTMLParagraphElement
only.
impl Borrow<DOMNode> for DOMHTMLParagraphElement
Available on crate feature
DOMHTMLParagraphElement
only.source§impl Borrow<DOMNode> for DOMHTMLParamElement
Available on crate feature DOMHTMLParamElement
only.
impl Borrow<DOMNode> for DOMHTMLParamElement
Available on crate feature
DOMHTMLParamElement
only.source§impl Borrow<DOMNode> for DOMHTMLPreElement
Available on crate feature DOMHTMLPreElement
only.
impl Borrow<DOMNode> for DOMHTMLPreElement
Available on crate feature
DOMHTMLPreElement
only.source§impl Borrow<DOMNode> for DOMHTMLQuoteElement
Available on crate feature DOMHTMLQuoteElement
only.
impl Borrow<DOMNode> for DOMHTMLQuoteElement
Available on crate feature
DOMHTMLQuoteElement
only.source§impl Borrow<DOMNode> for DOMHTMLScriptElement
Available on crate feature DOMHTMLScriptElement
only.
impl Borrow<DOMNode> for DOMHTMLScriptElement
Available on crate feature
DOMHTMLScriptElement
only.source§impl Borrow<DOMNode> for DOMHTMLSelectElement
Available on crate feature DOMHTMLSelectElement
only.
impl Borrow<DOMNode> for DOMHTMLSelectElement
Available on crate feature
DOMHTMLSelectElement
only.source§impl Borrow<DOMNode> for DOMHTMLStyleElement
Available on crate feature DOMHTMLStyleElement
only.
impl Borrow<DOMNode> for DOMHTMLStyleElement
Available on crate feature
DOMHTMLStyleElement
only.source§impl Borrow<DOMNode> for DOMHTMLTableCaptionElement
Available on crate feature DOMHTMLTableCaptionElement
only.
impl Borrow<DOMNode> for DOMHTMLTableCaptionElement
Available on crate feature
DOMHTMLTableCaptionElement
only.source§impl Borrow<DOMNode> for DOMHTMLTableCellElement
Available on crate feature DOMHTMLTableCellElement
only.
impl Borrow<DOMNode> for DOMHTMLTableCellElement
Available on crate feature
DOMHTMLTableCellElement
only.source§impl Borrow<DOMNode> for DOMHTMLTableColElement
Available on crate feature DOMHTMLTableColElement
only.
impl Borrow<DOMNode> for DOMHTMLTableColElement
Available on crate feature
DOMHTMLTableColElement
only.source§impl Borrow<DOMNode> for DOMHTMLTableElement
Available on crate feature DOMHTMLTableElement
only.
impl Borrow<DOMNode> for DOMHTMLTableElement
Available on crate feature
DOMHTMLTableElement
only.source§impl Borrow<DOMNode> for DOMHTMLTableRowElement
Available on crate feature DOMHTMLTableRowElement
only.
impl Borrow<DOMNode> for DOMHTMLTableRowElement
Available on crate feature
DOMHTMLTableRowElement
only.source§impl Borrow<DOMNode> for DOMHTMLTableSectionElement
Available on crate feature DOMHTMLTableSectionElement
only.
impl Borrow<DOMNode> for DOMHTMLTableSectionElement
Available on crate feature
DOMHTMLTableSectionElement
only.source§impl Borrow<DOMNode> for DOMHTMLTextAreaElement
Available on crate feature DOMHTMLTextAreaElement
only.
impl Borrow<DOMNode> for DOMHTMLTextAreaElement
Available on crate feature
DOMHTMLTextAreaElement
only.source§impl Borrow<DOMNode> for DOMHTMLTitleElement
Available on crate feature DOMHTMLTitleElement
only.
impl Borrow<DOMNode> for DOMHTMLTitleElement
Available on crate feature
DOMHTMLTitleElement
only.source§impl Borrow<DOMNode> for DOMHTMLUListElement
Available on crate feature DOMHTMLUListElement
only.
impl Borrow<DOMNode> for DOMHTMLUListElement
Available on crate feature
DOMHTMLUListElement
only.source§impl Borrow<DOMNode> for DOMProcessingInstruction
Available on crate feature DOMProcessingInstruction
only.
impl Borrow<DOMNode> for DOMProcessingInstruction
Available on crate feature
DOMProcessingInstruction
only.source§impl Borrow<WebScriptObject> for DOMNode
impl Borrow<WebScriptObject> for DOMNode
source§fn borrow(&self) -> &WebScriptObject
fn borrow(&self) -> &WebScriptObject
Immutably borrows from an owned value. Read more
source§impl BorrowMut<AnyObject> for DOMNode
impl BorrowMut<AnyObject> for DOMNode
source§fn borrow_mut(&mut self) -> &mut AnyObject
fn borrow_mut(&mut self) -> &mut AnyObject
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMAttr
Available on crate feature DOMAttr
only.
impl BorrowMut<DOMNode> for DOMAttr
Available on crate feature
DOMAttr
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMCDATASection
Available on crate feature DOMCDATASection
only.
impl BorrowMut<DOMNode> for DOMCDATASection
Available on crate feature
DOMCDATASection
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMCharacterData
Available on crate feature DOMCharacterData
only.
impl BorrowMut<DOMNode> for DOMCharacterData
Available on crate feature
DOMCharacterData
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMComment
Available on crate feature DOMComment
only.
impl BorrowMut<DOMNode> for DOMComment
Available on crate feature
DOMComment
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMDocument
Available on crate feature DOMDocument
only.
impl BorrowMut<DOMNode> for DOMDocument
Available on crate feature
DOMDocument
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMDocumentFragment
Available on crate feature DOMDocumentFragment
only.
impl BorrowMut<DOMNode> for DOMDocumentFragment
Available on crate feature
DOMDocumentFragment
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMDocumentType
Available on crate feature DOMDocumentType
only.
impl BorrowMut<DOMNode> for DOMDocumentType
Available on crate feature
DOMDocumentType
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMElement
Available on crate feature DOMElement
only.
impl BorrowMut<DOMNode> for DOMElement
Available on crate feature
DOMElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMEntity
Available on crate feature DOMEntity
only.
impl BorrowMut<DOMNode> for DOMEntity
Available on crate feature
DOMEntity
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMEntityReference
Available on crate feature DOMEntityReference
only.
impl BorrowMut<DOMNode> for DOMEntityReference
Available on crate feature
DOMEntityReference
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLAnchorElement
Available on crate feature DOMHTMLAnchorElement
only.
impl BorrowMut<DOMNode> for DOMHTMLAnchorElement
Available on crate feature
DOMHTMLAnchorElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLAppletElement
Available on crate feature DOMHTMLAppletElement
only.
impl BorrowMut<DOMNode> for DOMHTMLAppletElement
Available on crate feature
DOMHTMLAppletElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLAreaElement
Available on crate feature DOMHTMLAreaElement
only.
impl BorrowMut<DOMNode> for DOMHTMLAreaElement
Available on crate feature
DOMHTMLAreaElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLBRElement
Available on crate feature DOMHTMLBRElement
only.
impl BorrowMut<DOMNode> for DOMHTMLBRElement
Available on crate feature
DOMHTMLBRElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLBaseElement
Available on crate feature DOMHTMLBaseElement
only.
impl BorrowMut<DOMNode> for DOMHTMLBaseElement
Available on crate feature
DOMHTMLBaseElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLBaseFontElement
Available on crate feature DOMHTMLBaseFontElement
only.
impl BorrowMut<DOMNode> for DOMHTMLBaseFontElement
Available on crate feature
DOMHTMLBaseFontElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLBodyElement
Available on crate feature DOMHTMLBodyElement
only.
impl BorrowMut<DOMNode> for DOMHTMLBodyElement
Available on crate feature
DOMHTMLBodyElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLButtonElement
Available on crate feature DOMHTMLButtonElement
only.
impl BorrowMut<DOMNode> for DOMHTMLButtonElement
Available on crate feature
DOMHTMLButtonElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLDListElement
Available on crate feature DOMHTMLDListElement
only.
impl BorrowMut<DOMNode> for DOMHTMLDListElement
Available on crate feature
DOMHTMLDListElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLDirectoryElement
Available on crate feature DOMHTMLDirectoryElement
only.
impl BorrowMut<DOMNode> for DOMHTMLDirectoryElement
Available on crate feature
DOMHTMLDirectoryElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLDivElement
Available on crate feature DOMHTMLDivElement
only.
impl BorrowMut<DOMNode> for DOMHTMLDivElement
Available on crate feature
DOMHTMLDivElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLDocument
Available on crate feature DOMHTMLDocument
only.
impl BorrowMut<DOMNode> for DOMHTMLDocument
Available on crate feature
DOMHTMLDocument
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLElement
Available on crate feature DOMHTMLElement
only.
impl BorrowMut<DOMNode> for DOMHTMLElement
Available on crate feature
DOMHTMLElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLEmbedElement
Available on crate feature DOMHTMLEmbedElement
only.
impl BorrowMut<DOMNode> for DOMHTMLEmbedElement
Available on crate feature
DOMHTMLEmbedElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLFieldSetElement
Available on crate feature DOMHTMLFieldSetElement
only.
impl BorrowMut<DOMNode> for DOMHTMLFieldSetElement
Available on crate feature
DOMHTMLFieldSetElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLFontElement
Available on crate feature DOMHTMLFontElement
only.
impl BorrowMut<DOMNode> for DOMHTMLFontElement
Available on crate feature
DOMHTMLFontElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLFormElement
Available on crate feature DOMHTMLFormElement
only.
impl BorrowMut<DOMNode> for DOMHTMLFormElement
Available on crate feature
DOMHTMLFormElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLFrameElement
Available on crate feature DOMHTMLFrameElement
only.
impl BorrowMut<DOMNode> for DOMHTMLFrameElement
Available on crate feature
DOMHTMLFrameElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLFrameSetElement
Available on crate feature DOMHTMLFrameSetElement
only.
impl BorrowMut<DOMNode> for DOMHTMLFrameSetElement
Available on crate feature
DOMHTMLFrameSetElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLHRElement
Available on crate feature DOMHTMLHRElement
only.
impl BorrowMut<DOMNode> for DOMHTMLHRElement
Available on crate feature
DOMHTMLHRElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLHeadElement
Available on crate feature DOMHTMLHeadElement
only.
impl BorrowMut<DOMNode> for DOMHTMLHeadElement
Available on crate feature
DOMHTMLHeadElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLHeadingElement
Available on crate feature DOMHTMLHeadingElement
only.
impl BorrowMut<DOMNode> for DOMHTMLHeadingElement
Available on crate feature
DOMHTMLHeadingElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLHtmlElement
Available on crate feature DOMHTMLHtmlElement
only.
impl BorrowMut<DOMNode> for DOMHTMLHtmlElement
Available on crate feature
DOMHTMLHtmlElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLIFrameElement
Available on crate feature DOMHTMLIFrameElement
only.
impl BorrowMut<DOMNode> for DOMHTMLIFrameElement
Available on crate feature
DOMHTMLIFrameElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLImageElement
Available on crate feature DOMHTMLImageElement
only.
impl BorrowMut<DOMNode> for DOMHTMLImageElement
Available on crate feature
DOMHTMLImageElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLInputElement
Available on crate feature DOMHTMLInputElement
only.
impl BorrowMut<DOMNode> for DOMHTMLInputElement
Available on crate feature
DOMHTMLInputElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLLIElement
Available on crate feature DOMHTMLLIElement
only.
impl BorrowMut<DOMNode> for DOMHTMLLIElement
Available on crate feature
DOMHTMLLIElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLLabelElement
Available on crate feature DOMHTMLLabelElement
only.
impl BorrowMut<DOMNode> for DOMHTMLLabelElement
Available on crate feature
DOMHTMLLabelElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLLegendElement
Available on crate feature DOMHTMLLegendElement
only.
impl BorrowMut<DOMNode> for DOMHTMLLegendElement
Available on crate feature
DOMHTMLLegendElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLLinkElement
Available on crate feature DOMHTMLLinkElement
only.
impl BorrowMut<DOMNode> for DOMHTMLLinkElement
Available on crate feature
DOMHTMLLinkElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLMapElement
Available on crate feature DOMHTMLMapElement
only.
impl BorrowMut<DOMNode> for DOMHTMLMapElement
Available on crate feature
DOMHTMLMapElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLMarqueeElement
Available on crate feature DOMHTMLMarqueeElement
only.
impl BorrowMut<DOMNode> for DOMHTMLMarqueeElement
Available on crate feature
DOMHTMLMarqueeElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLMenuElement
Available on crate feature DOMHTMLMenuElement
only.
impl BorrowMut<DOMNode> for DOMHTMLMenuElement
Available on crate feature
DOMHTMLMenuElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLMetaElement
Available on crate feature DOMHTMLMetaElement
only.
impl BorrowMut<DOMNode> for DOMHTMLMetaElement
Available on crate feature
DOMHTMLMetaElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLModElement
Available on crate feature DOMHTMLModElement
only.
impl BorrowMut<DOMNode> for DOMHTMLModElement
Available on crate feature
DOMHTMLModElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLOListElement
Available on crate feature DOMHTMLOListElement
only.
impl BorrowMut<DOMNode> for DOMHTMLOListElement
Available on crate feature
DOMHTMLOListElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLObjectElement
Available on crate feature DOMHTMLObjectElement
only.
impl BorrowMut<DOMNode> for DOMHTMLObjectElement
Available on crate feature
DOMHTMLObjectElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLOptGroupElement
Available on crate feature DOMHTMLOptGroupElement
only.
impl BorrowMut<DOMNode> for DOMHTMLOptGroupElement
Available on crate feature
DOMHTMLOptGroupElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLOptionElement
Available on crate feature DOMHTMLOptionElement
only.
impl BorrowMut<DOMNode> for DOMHTMLOptionElement
Available on crate feature
DOMHTMLOptionElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLParagraphElement
Available on crate feature DOMHTMLParagraphElement
only.
impl BorrowMut<DOMNode> for DOMHTMLParagraphElement
Available on crate feature
DOMHTMLParagraphElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLParamElement
Available on crate feature DOMHTMLParamElement
only.
impl BorrowMut<DOMNode> for DOMHTMLParamElement
Available on crate feature
DOMHTMLParamElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLPreElement
Available on crate feature DOMHTMLPreElement
only.
impl BorrowMut<DOMNode> for DOMHTMLPreElement
Available on crate feature
DOMHTMLPreElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLQuoteElement
Available on crate feature DOMHTMLQuoteElement
only.
impl BorrowMut<DOMNode> for DOMHTMLQuoteElement
Available on crate feature
DOMHTMLQuoteElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLScriptElement
Available on crate feature DOMHTMLScriptElement
only.
impl BorrowMut<DOMNode> for DOMHTMLScriptElement
Available on crate feature
DOMHTMLScriptElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLSelectElement
Available on crate feature DOMHTMLSelectElement
only.
impl BorrowMut<DOMNode> for DOMHTMLSelectElement
Available on crate feature
DOMHTMLSelectElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLStyleElement
Available on crate feature DOMHTMLStyleElement
only.
impl BorrowMut<DOMNode> for DOMHTMLStyleElement
Available on crate feature
DOMHTMLStyleElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLTableCaptionElement
Available on crate feature DOMHTMLTableCaptionElement
only.
impl BorrowMut<DOMNode> for DOMHTMLTableCaptionElement
Available on crate feature
DOMHTMLTableCaptionElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLTableCellElement
Available on crate feature DOMHTMLTableCellElement
only.
impl BorrowMut<DOMNode> for DOMHTMLTableCellElement
Available on crate feature
DOMHTMLTableCellElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLTableColElement
Available on crate feature DOMHTMLTableColElement
only.
impl BorrowMut<DOMNode> for DOMHTMLTableColElement
Available on crate feature
DOMHTMLTableColElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLTableElement
Available on crate feature DOMHTMLTableElement
only.
impl BorrowMut<DOMNode> for DOMHTMLTableElement
Available on crate feature
DOMHTMLTableElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLTableRowElement
Available on crate feature DOMHTMLTableRowElement
only.
impl BorrowMut<DOMNode> for DOMHTMLTableRowElement
Available on crate feature
DOMHTMLTableRowElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLTableSectionElement
Available on crate feature DOMHTMLTableSectionElement
only.
impl BorrowMut<DOMNode> for DOMHTMLTableSectionElement
Available on crate feature
DOMHTMLTableSectionElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLTextAreaElement
Available on crate feature DOMHTMLTextAreaElement
only.
impl BorrowMut<DOMNode> for DOMHTMLTextAreaElement
Available on crate feature
DOMHTMLTextAreaElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLTitleElement
Available on crate feature DOMHTMLTitleElement
only.
impl BorrowMut<DOMNode> for DOMHTMLTitleElement
Available on crate feature
DOMHTMLTitleElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMHTMLUListElement
Available on crate feature DOMHTMLUListElement
only.
impl BorrowMut<DOMNode> for DOMHTMLUListElement
Available on crate feature
DOMHTMLUListElement
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMProcessingInstruction
Available on crate feature DOMProcessingInstruction
only.
impl BorrowMut<DOMNode> for DOMProcessingInstruction
Available on crate feature
DOMProcessingInstruction
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMNode> for DOMText
Available on crate feature DOMText
only.
impl BorrowMut<DOMNode> for DOMText
Available on crate feature
DOMText
only.source§fn borrow_mut(&mut self) -> &mut DOMNode
fn borrow_mut(&mut self) -> &mut DOMNode
Mutably borrows from an owned value. Read more
source§impl BorrowMut<DOMObject> for DOMNode
impl BorrowMut<DOMObject> for DOMNode
source§fn borrow_mut(&mut self) -> &mut DOMObject
fn borrow_mut(&mut self) -> &mut DOMObject
Mutably borrows from an owned value. Read more
source§impl BorrowMut<NSObject> for DOMNode
impl BorrowMut<NSObject> for DOMNode
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
Mutably borrows from an owned value. Read more
source§impl BorrowMut<WebScriptObject> for DOMNode
impl BorrowMut<WebScriptObject> for DOMNode
source§fn borrow_mut(&mut self) -> &mut WebScriptObject
fn borrow_mut(&mut self) -> &mut WebScriptObject
Mutably borrows from an owned value. Read more
source§impl ClassType for DOMNode
impl ClassType for DOMNode
§type Mutability = InteriorMutable
type Mutability = InteriorMutable
Whether the type is mutable or immutable. Read more
source§const NAME: &'static str = "DOMNode"
const NAME: &'static str = "DOMNode"
The name of the Objective-C class that this type represents. Read more
source§fn class() -> &'static AnyClass
fn class() -> &'static AnyClass
Get a reference to the Objective-C class that this type represents. Read more
source§fn as_super_mut(&mut self) -> &mut Self::Super
fn as_super_mut(&mut self) -> &mut Self::Super
Get a mutable reference to the superclass.
source§impl DOMEventTarget for DOMNode
Available on crate feature DOMEventTarget
only.
impl DOMEventTarget for DOMNode
Available on crate feature
DOMEventTarget
only.source§unsafe fn addEventListener_listener_useCapture(
&self,
type: Option<&NSString>,
listener: Option<&ProtocolObject<dyn DOMEventListener>>,
use_capture: bool
)
unsafe fn addEventListener_listener_useCapture( &self, type: Option<&NSString>, listener: Option<&ProtocolObject<dyn DOMEventListener>>, use_capture: bool )
👎Deprecated
Available on crate feature
DOMEventListener
only.source§unsafe fn removeEventListener_listener_useCapture(
&self,
type: Option<&NSString>,
listener: Option<&ProtocolObject<dyn DOMEventListener>>,
use_capture: bool
)
unsafe fn removeEventListener_listener_useCapture( &self, type: Option<&NSString>, listener: Option<&ProtocolObject<dyn DOMEventListener>>, use_capture: bool )
👎Deprecated
Available on crate feature
DOMEventListener
only.source§unsafe fn dispatchEvent(&self, event: Option<&DOMEvent>) -> bool
unsafe fn dispatchEvent(&self, event: Option<&DOMEvent>) -> bool
👎Deprecated
Available on crate feature
DOMEvent
only.source§unsafe fn addEventListener(
&self,
type: Option<&NSString>,
listener: Option<&ProtocolObject<dyn DOMEventListener>>,
use_capture: bool
)
unsafe fn addEventListener( &self, type: Option<&NSString>, listener: Option<&ProtocolObject<dyn DOMEventListener>>, use_capture: bool )
👎Deprecated
Available on crate feature
DOMEventListener
only.source§unsafe fn removeEventListener(
&self,
type: Option<&NSString>,
listener: Option<&ProtocolObject<dyn DOMEventListener>>,
use_capture: bool
)
unsafe fn removeEventListener( &self, type: Option<&NSString>, listener: Option<&ProtocolObject<dyn DOMEventListener>>, use_capture: bool )
👎Deprecated
Available on crate feature
DOMEventListener
only.source§impl NSObjectProtocol for DOMNode
impl NSObjectProtocol for DOMNode
source§fn isEqual(&self, other: &AnyObject) -> bool
fn isEqual(&self, other: &AnyObject) -> bool
Check whether the object is equal to an arbitrary other object. Read more
source§fn hash(&self) -> usize
fn hash(&self) -> usize
An integer that can be used as a table address in a hash table
structure. Read more
source§fn isKindOfClass(&self, cls: &AnyClass) -> bool
fn isKindOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of the class, or one of its
subclasses. Read more
source§fn is_kind_of<T>(&self) -> bool
fn is_kind_of<T>(&self) -> bool
Check if the object is an instance of the class type, or one of its
subclasses. Read more
source§fn isMemberOfClass(&self, cls: &AnyClass) -> bool
fn isMemberOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of a specific class, without
checking subclasses. Read more
source§fn respondsToSelector(&self, aSelector: Sel) -> bool
fn respondsToSelector(&self, aSelector: Sel) -> bool
Check whether the object implements or inherits a method with the
given selector. Read more
source§fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
Check whether the object conforms to a given protocol. Read more
source§fn debugDescription(&self) -> Retained<NSObject>
fn debugDescription(&self) -> Retained<NSObject>
A textual representation of the object to use when debugging. Read more
source§impl PartialEq for DOMNode
impl PartialEq for DOMNode
source§impl RefEncode for DOMNode
impl RefEncode for DOMNode
source§const ENCODING_REF: Encoding = <DOMObject as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <DOMObject as ::objc2::RefEncode>::ENCODING_REF
The Objective-C type-encoding for a reference of this type. Read more
impl Eq for DOMNode
impl Message for DOMNode
impl StructuralPartialEq for DOMNode
Auto Trait Implementations§
impl !Freeze for DOMNode
impl !RefUnwindSafe for DOMNode
impl !Send for DOMNode
impl !Sync for DOMNode
impl !Unpin for DOMNode
impl !UnwindSafe for DOMNode
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
Mutably borrows from an owned value. Read more
source§impl<T> CounterpartOrSelf for T
impl<T> CounterpartOrSelf for T
§type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
The immutable counterpart of the type, or
Self
if the type has no
immutable counterpart. Read more§type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
The mutable counterpart of the type, or
Self
if the type has no
mutable counterpart. Read more