Struct objc2_web_kit::WebScriptObject

source ·
#[repr(C)]
pub struct WebScriptObject { /* private fields */ }
👎Deprecated
Available on crate feature WebScriptObject only.

Implementations§

source§

impl WebScriptObject

source

pub unsafe fn throwException(exception_message: Option<&NSString>) -> bool

👎Deprecated
source

pub unsafe fn callWebScriptMethod_withArguments( &self, name: Option<&NSString>, arguments: Option<&NSArray> ) -> Option<Retained<AnyObject>>

👎Deprecated
source

pub unsafe fn evaluateWebScript( &self, script: Option<&NSString> ) -> Option<Retained<AnyObject>>

👎Deprecated
source

pub unsafe fn removeWebScriptKey(&self, name: Option<&NSString>)

👎Deprecated
source

pub unsafe fn stringRepresentation(&self) -> Option<Retained<NSString>>

👎Deprecated
source

pub unsafe fn webScriptValueAtIndex( &self, index: c_uint ) -> Option<Retained<AnyObject>>

👎Deprecated
source

pub unsafe fn setWebScriptValueAtIndex_value( &self, index: c_uint, value: Option<&AnyObject> )

👎Deprecated
source

pub unsafe fn setException(&self, description: Option<&NSString>)

👎Deprecated
source§

impl WebScriptObject

Methods declared on superclass NSObject

source

pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>

source

pub unsafe fn new() -> Retained<Self>

Methods from Deref<Target = NSObject>§

source

pub fn doesNotRecognizeSelector(&self, sel: Sel) -> !

Handle messages the object doesn’t recognize.

See Apple’s documentation for details.

Methods from Deref<Target = AnyObject>§

source

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());
source

pub unsafe fn get_ivar<T>(&self, name: &str) -> &T
where T: Encode,

👎Deprecated: this is difficult to use correctly, use 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.

source

pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut T
where T: Encode,

👎Deprecated: this is difficult to use correctly, use 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<AnyObject> for WebScriptObject

source§

fn as_mut(&mut self) -> &mut AnyObject

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

impl AsMut<NSObject> for WebScriptObject

source§

fn as_mut(&mut self) -> &mut NSObject

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

impl AsMut<WebScriptObject> for DOMAbstractView

Available on crate feature DOMAbstractView only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMAttr

Available on crate feature DOMAttr only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMBlob

Available on crate feature DOMBlob only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCDATASection

Available on crate feature DOMCDATASection only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSCharsetRule

Available on crate feature DOMCSSCharsetRule only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSFontFaceRule

Available on crate feature DOMCSSFontFaceRule only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSImportRule

Available on crate feature DOMCSSImportRule only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSMediaRule

Available on crate feature DOMCSSMediaRule only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSPageRule

Available on crate feature DOMCSSPageRule only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSPrimitiveValue

Available on crate feature DOMCSSPrimitiveValue only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSRule

Available on crate feature DOMCSSRule only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSRuleList

Available on crate feature DOMCSSRuleList only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSStyleDeclaration

Available on crate feature DOMCSSStyleDeclaration only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSStyleRule

Available on crate feature DOMCSSStyleRule only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSStyleSheet

Available on crate feature DOMCSSStyleSheet only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSUnknownRule

Available on crate feature DOMCSSUnknownRule only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSValue

Available on crate feature DOMCSSValue only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCSSValueList

Available on crate feature DOMCSSValueList only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCharacterData

Available on crate feature DOMCharacterData only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMComment

Available on crate feature DOMComment only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMCounter

Available on crate feature DOMCounter only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMDocument

Available on crate feature DOMDocument only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMDocumentFragment

Available on crate feature DOMDocumentFragment only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMDocumentType

Available on crate feature DOMDocumentType only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMElement

Available on crate feature DOMElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMEntity

Available on crate feature DOMEntity only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMEntityReference

Available on crate feature DOMEntityReference only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMEvent

Available on crate feature DOMEvent only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMFile

Available on crate feature DOMFile only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMFileList

Available on crate feature DOMFileList only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLAnchorElement

Available on crate feature DOMHTMLAnchorElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLAppletElement

Available on crate feature DOMHTMLAppletElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLAreaElement

Available on crate feature DOMHTMLAreaElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLBRElement

Available on crate feature DOMHTMLBRElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLBaseElement

Available on crate feature DOMHTMLBaseElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLBaseFontElement

Available on crate feature DOMHTMLBaseFontElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLBodyElement

Available on crate feature DOMHTMLBodyElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLButtonElement

Available on crate feature DOMHTMLButtonElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLCollection

Available on crate feature DOMHTMLCollection only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLDListElement

Available on crate feature DOMHTMLDListElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLDirectoryElement

Available on crate feature DOMHTMLDirectoryElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLDivElement

Available on crate feature DOMHTMLDivElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLDocument

Available on crate feature DOMHTMLDocument only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLElement

Available on crate feature DOMHTMLElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLEmbedElement

Available on crate feature DOMHTMLEmbedElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLFieldSetElement

Available on crate feature DOMHTMLFieldSetElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLFontElement

Available on crate feature DOMHTMLFontElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLFormElement

Available on crate feature DOMHTMLFormElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLFrameElement

Available on crate feature DOMHTMLFrameElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLFrameSetElement

Available on crate feature DOMHTMLFrameSetElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLHRElement

Available on crate feature DOMHTMLHRElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLHeadElement

Available on crate feature DOMHTMLHeadElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLHeadingElement

Available on crate feature DOMHTMLHeadingElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLHtmlElement

Available on crate feature DOMHTMLHtmlElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLIFrameElement

Available on crate feature DOMHTMLIFrameElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLImageElement

Available on crate feature DOMHTMLImageElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLInputElement

Available on crate feature DOMHTMLInputElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLLIElement

Available on crate feature DOMHTMLLIElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLLabelElement

Available on crate feature DOMHTMLLabelElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLLegendElement

Available on crate feature DOMHTMLLegendElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLLinkElement

Available on crate feature DOMHTMLLinkElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLMapElement

Available on crate feature DOMHTMLMapElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLMarqueeElement

Available on crate feature DOMHTMLMarqueeElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLMenuElement

Available on crate feature DOMHTMLMenuElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLMetaElement

Available on crate feature DOMHTMLMetaElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLModElement

Available on crate feature DOMHTMLModElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLOListElement

Available on crate feature DOMHTMLOListElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLObjectElement

Available on crate feature DOMHTMLObjectElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLOptGroupElement

Available on crate feature DOMHTMLOptGroupElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLOptionElement

Available on crate feature DOMHTMLOptionElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLOptionsCollection

Available on crate feature DOMHTMLOptionsCollection only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLParagraphElement

Available on crate feature DOMHTMLParagraphElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLParamElement

Available on crate feature DOMHTMLParamElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLPreElement

Available on crate feature DOMHTMLPreElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLQuoteElement

Available on crate feature DOMHTMLQuoteElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLScriptElement

Available on crate feature DOMHTMLScriptElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLSelectElement

Available on crate feature DOMHTMLSelectElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLStyleElement

Available on crate feature DOMHTMLStyleElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLTableCaptionElement

Available on crate feature DOMHTMLTableCaptionElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLTableCellElement

Available on crate feature DOMHTMLTableCellElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLTableColElement

Available on crate feature DOMHTMLTableColElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLTableElement

Available on crate feature DOMHTMLTableElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLTableRowElement

Available on crate feature DOMHTMLTableRowElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLTableSectionElement

Available on crate feature DOMHTMLTableSectionElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLTextAreaElement

Available on crate feature DOMHTMLTextAreaElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLTitleElement

Available on crate feature DOMHTMLTitleElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMHTMLUListElement

Available on crate feature DOMHTMLUListElement only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMImplementation

Available on crate feature DOMImplementation only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMKeyboardEvent

Available on crate feature DOMKeyboardEvent only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMMediaList

Available on crate feature DOMMediaList only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMMouseEvent

Available on crate feature DOMMouseEvent only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMMutationEvent

Available on crate feature DOMMutationEvent only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMNamedNodeMap

Available on crate feature DOMNamedNodeMap only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMNode

Available on crate feature DOMNode only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMNodeIterator

Available on crate feature DOMNodeIterator only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMNodeList

Available on crate feature DOMNodeList only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMObject

Available on crate feature DOMObject only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMOverflowEvent

Available on crate feature DOMOverflowEvent only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMProcessingInstruction

Available on crate feature DOMProcessingInstruction only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMProgressEvent

Available on crate feature DOMProgressEvent only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMRGBColor

Available on crate feature DOMRGBColor only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMRange

Available on crate feature DOMRange only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMRect

Available on crate feature DOMRect only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMStyleSheet

Available on crate feature DOMStyleSheet only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMStyleSheetList

Available on crate feature DOMStyleSheetList only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMText

Available on crate feature DOMText only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMTreeWalker

Available on crate feature DOMTreeWalker only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMUIEvent

Available on crate feature DOMUIEvent only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMWheelEvent

Available on crate feature DOMWheelEvent only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMXPathExpression

Available on crate feature DOMXPathExpression only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for DOMXPathResult

Available on crate feature DOMXPathResult only.
source§

fn as_mut(&mut self) -> &mut WebScriptObject

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

impl AsMut<WebScriptObject> for WebScriptObject

source§

fn as_mut(&mut self) -> &mut Self

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

impl AsRef<AnyObject> for WebScriptObject

source§

fn as_ref(&self) -> &AnyObject

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

impl AsRef<NSObject> for WebScriptObject

source§

fn as_ref(&self) -> &NSObject

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

impl AsRef<WebScriptObject> for DOMAbstractView

Available on crate feature DOMAbstractView only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMAttr

Available on crate feature DOMAttr only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMBlob

Available on crate feature DOMBlob only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCDATASection

Available on crate feature DOMCDATASection only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSCharsetRule

Available on crate feature DOMCSSCharsetRule only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSFontFaceRule

Available on crate feature DOMCSSFontFaceRule only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSImportRule

Available on crate feature DOMCSSImportRule only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSMediaRule

Available on crate feature DOMCSSMediaRule only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSPageRule

Available on crate feature DOMCSSPageRule only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSPrimitiveValue

Available on crate feature DOMCSSPrimitiveValue only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSRule

Available on crate feature DOMCSSRule only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSRuleList

Available on crate feature DOMCSSRuleList only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSStyleDeclaration

Available on crate feature DOMCSSStyleDeclaration only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSStyleRule

Available on crate feature DOMCSSStyleRule only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSStyleSheet

Available on crate feature DOMCSSStyleSheet only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSUnknownRule

Available on crate feature DOMCSSUnknownRule only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSValue

Available on crate feature DOMCSSValue only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCSSValueList

Available on crate feature DOMCSSValueList only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCharacterData

Available on crate feature DOMCharacterData only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMComment

Available on crate feature DOMComment only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMCounter

Available on crate feature DOMCounter only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMDocument

Available on crate feature DOMDocument only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMDocumentFragment

Available on crate feature DOMDocumentFragment only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMDocumentType

Available on crate feature DOMDocumentType only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMElement

Available on crate feature DOMElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMEntity

Available on crate feature DOMEntity only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMEntityReference

Available on crate feature DOMEntityReference only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMEvent

Available on crate feature DOMEvent only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMFile

Available on crate feature DOMFile only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMFileList

Available on crate feature DOMFileList only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLAnchorElement

Available on crate feature DOMHTMLAnchorElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLAppletElement

Available on crate feature DOMHTMLAppletElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLAreaElement

Available on crate feature DOMHTMLAreaElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLBRElement

Available on crate feature DOMHTMLBRElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLBaseElement

Available on crate feature DOMHTMLBaseElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLBaseFontElement

Available on crate feature DOMHTMLBaseFontElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLBodyElement

Available on crate feature DOMHTMLBodyElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLButtonElement

Available on crate feature DOMHTMLButtonElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLCollection

Available on crate feature DOMHTMLCollection only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLDListElement

Available on crate feature DOMHTMLDListElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLDirectoryElement

Available on crate feature DOMHTMLDirectoryElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLDivElement

Available on crate feature DOMHTMLDivElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLDocument

Available on crate feature DOMHTMLDocument only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLElement

Available on crate feature DOMHTMLElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLEmbedElement

Available on crate feature DOMHTMLEmbedElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLFieldSetElement

Available on crate feature DOMHTMLFieldSetElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLFontElement

Available on crate feature DOMHTMLFontElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLFormElement

Available on crate feature DOMHTMLFormElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLFrameElement

Available on crate feature DOMHTMLFrameElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLFrameSetElement

Available on crate feature DOMHTMLFrameSetElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLHRElement

Available on crate feature DOMHTMLHRElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLHeadElement

Available on crate feature DOMHTMLHeadElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLHeadingElement

Available on crate feature DOMHTMLHeadingElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLHtmlElement

Available on crate feature DOMHTMLHtmlElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLIFrameElement

Available on crate feature DOMHTMLIFrameElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLImageElement

Available on crate feature DOMHTMLImageElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLInputElement

Available on crate feature DOMHTMLInputElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLLIElement

Available on crate feature DOMHTMLLIElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLLabelElement

Available on crate feature DOMHTMLLabelElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLLegendElement

Available on crate feature DOMHTMLLegendElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLLinkElement

Available on crate feature DOMHTMLLinkElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLMapElement

Available on crate feature DOMHTMLMapElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLMarqueeElement

Available on crate feature DOMHTMLMarqueeElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLMenuElement

Available on crate feature DOMHTMLMenuElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLMetaElement

Available on crate feature DOMHTMLMetaElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLModElement

Available on crate feature DOMHTMLModElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLOListElement

Available on crate feature DOMHTMLOListElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLObjectElement

Available on crate feature DOMHTMLObjectElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLOptGroupElement

Available on crate feature DOMHTMLOptGroupElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLOptionElement

Available on crate feature DOMHTMLOptionElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLOptionsCollection

Available on crate feature DOMHTMLOptionsCollection only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLParagraphElement

Available on crate feature DOMHTMLParagraphElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLParamElement

Available on crate feature DOMHTMLParamElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLPreElement

Available on crate feature DOMHTMLPreElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLQuoteElement

Available on crate feature DOMHTMLQuoteElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLScriptElement

Available on crate feature DOMHTMLScriptElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLSelectElement

Available on crate feature DOMHTMLSelectElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLStyleElement

Available on crate feature DOMHTMLStyleElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLTableCaptionElement

Available on crate feature DOMHTMLTableCaptionElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLTableCellElement

Available on crate feature DOMHTMLTableCellElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLTableColElement

Available on crate feature DOMHTMLTableColElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLTableElement

Available on crate feature DOMHTMLTableElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLTableRowElement

Available on crate feature DOMHTMLTableRowElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLTableSectionElement

Available on crate feature DOMHTMLTableSectionElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLTextAreaElement

Available on crate feature DOMHTMLTextAreaElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLTitleElement

Available on crate feature DOMHTMLTitleElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMHTMLUListElement

Available on crate feature DOMHTMLUListElement only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMImplementation

Available on crate feature DOMImplementation only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMKeyboardEvent

Available on crate feature DOMKeyboardEvent only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMMediaList

Available on crate feature DOMMediaList only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMMouseEvent

Available on crate feature DOMMouseEvent only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMMutationEvent

Available on crate feature DOMMutationEvent only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMNamedNodeMap

Available on crate feature DOMNamedNodeMap only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMNode

Available on crate feature DOMNode only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMNodeIterator

Available on crate feature DOMNodeIterator only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMNodeList

Available on crate feature DOMNodeList only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMObject

Available on crate feature DOMObject only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMOverflowEvent

Available on crate feature DOMOverflowEvent only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMProcessingInstruction

Available on crate feature DOMProcessingInstruction only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMProgressEvent

Available on crate feature DOMProgressEvent only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMRGBColor

Available on crate feature DOMRGBColor only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMRange

Available on crate feature DOMRange only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMRect

Available on crate feature DOMRect only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMStyleSheet

Available on crate feature DOMStyleSheet only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMStyleSheetList

Available on crate feature DOMStyleSheetList only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMText

Available on crate feature DOMText only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMTreeWalker

Available on crate feature DOMTreeWalker only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMUIEvent

Available on crate feature DOMUIEvent only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMWheelEvent

Available on crate feature DOMWheelEvent only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMXPathExpression

Available on crate feature DOMXPathExpression only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for DOMXPathResult

Available on crate feature DOMXPathResult only.
source§

fn as_ref(&self) -> &WebScriptObject

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

impl AsRef<WebScriptObject> for WebScriptObject

source§

fn as_ref(&self) -> &Self

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

impl Borrow<AnyObject> for WebScriptObject

source§

fn borrow(&self) -> &AnyObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<NSObject> for WebScriptObject

source§

fn borrow(&self) -> &NSObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMAbstractView

Available on crate feature DOMAbstractView only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMAttr

Available on crate feature DOMAttr only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMBlob

Available on crate feature DOMBlob only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCDATASection

Available on crate feature DOMCDATASection only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSCharsetRule

Available on crate feature DOMCSSCharsetRule only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSFontFaceRule

Available on crate feature DOMCSSFontFaceRule only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSImportRule

Available on crate feature DOMCSSImportRule only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSMediaRule

Available on crate feature DOMCSSMediaRule only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSPageRule

Available on crate feature DOMCSSPageRule only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSPrimitiveValue

Available on crate feature DOMCSSPrimitiveValue only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSRule

Available on crate feature DOMCSSRule only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSRuleList

Available on crate feature DOMCSSRuleList only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSStyleDeclaration

Available on crate feature DOMCSSStyleDeclaration only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSStyleRule

Available on crate feature DOMCSSStyleRule only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSStyleSheet

Available on crate feature DOMCSSStyleSheet only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSUnknownRule

Available on crate feature DOMCSSUnknownRule only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSValue

Available on crate feature DOMCSSValue only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCSSValueList

Available on crate feature DOMCSSValueList only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCharacterData

Available on crate feature DOMCharacterData only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMComment

Available on crate feature DOMComment only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMCounter

Available on crate feature DOMCounter only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMDocument

Available on crate feature DOMDocument only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMDocumentFragment

Available on crate feature DOMDocumentFragment only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMDocumentType

Available on crate feature DOMDocumentType only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMElement

Available on crate feature DOMElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMEntity

Available on crate feature DOMEntity only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMEntityReference

Available on crate feature DOMEntityReference only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMEvent

Available on crate feature DOMEvent only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMFile

Available on crate feature DOMFile only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMFileList

Available on crate feature DOMFileList only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLAnchorElement

Available on crate feature DOMHTMLAnchorElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLAppletElement

Available on crate feature DOMHTMLAppletElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLAreaElement

Available on crate feature DOMHTMLAreaElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLBRElement

Available on crate feature DOMHTMLBRElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLBaseElement

Available on crate feature DOMHTMLBaseElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLBaseFontElement

Available on crate feature DOMHTMLBaseFontElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLBodyElement

Available on crate feature DOMHTMLBodyElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLButtonElement

Available on crate feature DOMHTMLButtonElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLCollection

Available on crate feature DOMHTMLCollection only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLDListElement

Available on crate feature DOMHTMLDListElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLDirectoryElement

Available on crate feature DOMHTMLDirectoryElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLDivElement

Available on crate feature DOMHTMLDivElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLDocument

Available on crate feature DOMHTMLDocument only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLElement

Available on crate feature DOMHTMLElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLEmbedElement

Available on crate feature DOMHTMLEmbedElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLFieldSetElement

Available on crate feature DOMHTMLFieldSetElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLFontElement

Available on crate feature DOMHTMLFontElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLFormElement

Available on crate feature DOMHTMLFormElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLFrameElement

Available on crate feature DOMHTMLFrameElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLFrameSetElement

Available on crate feature DOMHTMLFrameSetElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLHRElement

Available on crate feature DOMHTMLHRElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLHeadElement

Available on crate feature DOMHTMLHeadElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLHeadingElement

Available on crate feature DOMHTMLHeadingElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLHtmlElement

Available on crate feature DOMHTMLHtmlElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLIFrameElement

Available on crate feature DOMHTMLIFrameElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLImageElement

Available on crate feature DOMHTMLImageElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLInputElement

Available on crate feature DOMHTMLInputElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLLIElement

Available on crate feature DOMHTMLLIElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLLabelElement

Available on crate feature DOMHTMLLabelElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLLegendElement

Available on crate feature DOMHTMLLegendElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLLinkElement

Available on crate feature DOMHTMLLinkElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLMapElement

Available on crate feature DOMHTMLMapElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLMarqueeElement

Available on crate feature DOMHTMLMarqueeElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLMenuElement

Available on crate feature DOMHTMLMenuElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLMetaElement

Available on crate feature DOMHTMLMetaElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLModElement

Available on crate feature DOMHTMLModElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLOListElement

Available on crate feature DOMHTMLOListElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLObjectElement

Available on crate feature DOMHTMLObjectElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLOptGroupElement

Available on crate feature DOMHTMLOptGroupElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLOptionElement

Available on crate feature DOMHTMLOptionElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLOptionsCollection

Available on crate feature DOMHTMLOptionsCollection only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLParagraphElement

Available on crate feature DOMHTMLParagraphElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLParamElement

Available on crate feature DOMHTMLParamElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLPreElement

Available on crate feature DOMHTMLPreElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLQuoteElement

Available on crate feature DOMHTMLQuoteElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLScriptElement

Available on crate feature DOMHTMLScriptElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLSelectElement

Available on crate feature DOMHTMLSelectElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLStyleElement

Available on crate feature DOMHTMLStyleElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLTableCaptionElement

Available on crate feature DOMHTMLTableCaptionElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLTableCellElement

Available on crate feature DOMHTMLTableCellElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLTableColElement

Available on crate feature DOMHTMLTableColElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLTableElement

Available on crate feature DOMHTMLTableElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLTableRowElement

Available on crate feature DOMHTMLTableRowElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLTableSectionElement

Available on crate feature DOMHTMLTableSectionElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLTextAreaElement

Available on crate feature DOMHTMLTextAreaElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLTitleElement

Available on crate feature DOMHTMLTitleElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMHTMLUListElement

Available on crate feature DOMHTMLUListElement only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMImplementation

Available on crate feature DOMImplementation only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMKeyboardEvent

Available on crate feature DOMKeyboardEvent only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMMediaList

Available on crate feature DOMMediaList only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMMouseEvent

Available on crate feature DOMMouseEvent only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMMutationEvent

Available on crate feature DOMMutationEvent only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMNamedNodeMap

Available on crate feature DOMNamedNodeMap only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMNode

Available on crate feature DOMNode only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMNodeIterator

Available on crate feature DOMNodeIterator only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMNodeList

Available on crate feature DOMNodeList only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMObject

Available on crate feature DOMObject only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMOverflowEvent

Available on crate feature DOMOverflowEvent only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMProcessingInstruction

Available on crate feature DOMProcessingInstruction only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMProgressEvent

Available on crate feature DOMProgressEvent only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMRGBColor

Available on crate feature DOMRGBColor only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMRange

Available on crate feature DOMRange only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMRect

Available on crate feature DOMRect only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMStyleSheet

Available on crate feature DOMStyleSheet only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMStyleSheetList

Available on crate feature DOMStyleSheetList only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMText

Available on crate feature DOMText only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMTreeWalker

Available on crate feature DOMTreeWalker only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMUIEvent

Available on crate feature DOMUIEvent only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMWheelEvent

Available on crate feature DOMWheelEvent only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMXPathExpression

Available on crate feature DOMXPathExpression only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl Borrow<WebScriptObject> for DOMXPathResult

Available on crate feature DOMXPathResult only.
source§

fn borrow(&self) -> &WebScriptObject

Immutably borrows from an owned value. Read more
source§

impl BorrowMut<AnyObject> for WebScriptObject

source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<NSObject> for WebScriptObject

source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMAbstractView

Available on crate feature DOMAbstractView only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMAttr

Available on crate feature DOMAttr only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMBlob

Available on crate feature DOMBlob only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCDATASection

Available on crate feature DOMCDATASection only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSCharsetRule

Available on crate feature DOMCSSCharsetRule only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSFontFaceRule

Available on crate feature DOMCSSFontFaceRule only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSImportRule

Available on crate feature DOMCSSImportRule only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSMediaRule

Available on crate feature DOMCSSMediaRule only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSPageRule

Available on crate feature DOMCSSPageRule only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSPrimitiveValue

Available on crate feature DOMCSSPrimitiveValue only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSRule

Available on crate feature DOMCSSRule only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSRuleList

Available on crate feature DOMCSSRuleList only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSStyleDeclaration

Available on crate feature DOMCSSStyleDeclaration only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSStyleRule

Available on crate feature DOMCSSStyleRule only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSStyleSheet

Available on crate feature DOMCSSStyleSheet only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSUnknownRule

Available on crate feature DOMCSSUnknownRule only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSValue

Available on crate feature DOMCSSValue only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCSSValueList

Available on crate feature DOMCSSValueList only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCharacterData

Available on crate feature DOMCharacterData only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMComment

Available on crate feature DOMComment only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMCounter

Available on crate feature DOMCounter only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMDocument

Available on crate feature DOMDocument only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMDocumentFragment

Available on crate feature DOMDocumentFragment only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMDocumentType

Available on crate feature DOMDocumentType only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMElement

Available on crate feature DOMElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMEntity

Available on crate feature DOMEntity only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMEntityReference

Available on crate feature DOMEntityReference only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMEvent

Available on crate feature DOMEvent only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMFile

Available on crate feature DOMFile only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMFileList

Available on crate feature DOMFileList only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLAnchorElement

Available on crate feature DOMHTMLAnchorElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLAppletElement

Available on crate feature DOMHTMLAppletElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLAreaElement

Available on crate feature DOMHTMLAreaElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLBRElement

Available on crate feature DOMHTMLBRElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLBaseElement

Available on crate feature DOMHTMLBaseElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLBaseFontElement

Available on crate feature DOMHTMLBaseFontElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLBodyElement

Available on crate feature DOMHTMLBodyElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLButtonElement

Available on crate feature DOMHTMLButtonElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLCollection

Available on crate feature DOMHTMLCollection only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLDListElement

Available on crate feature DOMHTMLDListElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLDirectoryElement

Available on crate feature DOMHTMLDirectoryElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLDivElement

Available on crate feature DOMHTMLDivElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLDocument

Available on crate feature DOMHTMLDocument only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLElement

Available on crate feature DOMHTMLElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLEmbedElement

Available on crate feature DOMHTMLEmbedElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLFieldSetElement

Available on crate feature DOMHTMLFieldSetElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLFontElement

Available on crate feature DOMHTMLFontElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLFormElement

Available on crate feature DOMHTMLFormElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLFrameElement

Available on crate feature DOMHTMLFrameElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLFrameSetElement

Available on crate feature DOMHTMLFrameSetElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLHRElement

Available on crate feature DOMHTMLHRElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLHeadElement

Available on crate feature DOMHTMLHeadElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLHeadingElement

Available on crate feature DOMHTMLHeadingElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLHtmlElement

Available on crate feature DOMHTMLHtmlElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLIFrameElement

Available on crate feature DOMHTMLIFrameElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLImageElement

Available on crate feature DOMHTMLImageElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLInputElement

Available on crate feature DOMHTMLInputElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLLIElement

Available on crate feature DOMHTMLLIElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLLabelElement

Available on crate feature DOMHTMLLabelElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLLegendElement

Available on crate feature DOMHTMLLegendElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLLinkElement

Available on crate feature DOMHTMLLinkElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLMapElement

Available on crate feature DOMHTMLMapElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLMarqueeElement

Available on crate feature DOMHTMLMarqueeElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLMenuElement

Available on crate feature DOMHTMLMenuElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLMetaElement

Available on crate feature DOMHTMLMetaElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLModElement

Available on crate feature DOMHTMLModElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLOListElement

Available on crate feature DOMHTMLOListElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLObjectElement

Available on crate feature DOMHTMLObjectElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLOptGroupElement

Available on crate feature DOMHTMLOptGroupElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLOptionElement

Available on crate feature DOMHTMLOptionElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLOptionsCollection

Available on crate feature DOMHTMLOptionsCollection only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLParagraphElement

Available on crate feature DOMHTMLParagraphElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLParamElement

Available on crate feature DOMHTMLParamElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLPreElement

Available on crate feature DOMHTMLPreElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLQuoteElement

Available on crate feature DOMHTMLQuoteElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLScriptElement

Available on crate feature DOMHTMLScriptElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLSelectElement

Available on crate feature DOMHTMLSelectElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLStyleElement

Available on crate feature DOMHTMLStyleElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLTableCaptionElement

Available on crate feature DOMHTMLTableCaptionElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLTableCellElement

Available on crate feature DOMHTMLTableCellElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLTableColElement

Available on crate feature DOMHTMLTableColElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLTableElement

Available on crate feature DOMHTMLTableElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLTableRowElement

Available on crate feature DOMHTMLTableRowElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLTableSectionElement

Available on crate feature DOMHTMLTableSectionElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLTextAreaElement

Available on crate feature DOMHTMLTextAreaElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLTitleElement

Available on crate feature DOMHTMLTitleElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMHTMLUListElement

Available on crate feature DOMHTMLUListElement only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMImplementation

Available on crate feature DOMImplementation only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMKeyboardEvent

Available on crate feature DOMKeyboardEvent only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMMediaList

Available on crate feature DOMMediaList only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMMouseEvent

Available on crate feature DOMMouseEvent only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMMutationEvent

Available on crate feature DOMMutationEvent only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMNamedNodeMap

Available on crate feature DOMNamedNodeMap only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMNode

Available on crate feature DOMNode only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMNodeIterator

Available on crate feature DOMNodeIterator only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMNodeList

Available on crate feature DOMNodeList only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMObject

Available on crate feature DOMObject only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMOverflowEvent

Available on crate feature DOMOverflowEvent only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMProcessingInstruction

Available on crate feature DOMProcessingInstruction only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMProgressEvent

Available on crate feature DOMProgressEvent only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMRGBColor

Available on crate feature DOMRGBColor only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMRange

Available on crate feature DOMRange only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMRect

Available on crate feature DOMRect only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMStyleSheet

Available on crate feature DOMStyleSheet only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMStyleSheetList

Available on crate feature DOMStyleSheetList only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMText

Available on crate feature DOMText only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMTreeWalker

Available on crate feature DOMTreeWalker only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMUIEvent

Available on crate feature DOMUIEvent only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMWheelEvent

Available on crate feature DOMWheelEvent only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMXPathExpression

Available on crate feature DOMXPathExpression only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl BorrowMut<WebScriptObject> for DOMXPathResult

Available on crate feature DOMXPathResult only.
source§

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

Mutably borrows from an owned value. Read more
source§

impl ClassType for WebScriptObject

§

type Super = NSObject

The superclass of this class. Read more
§

type Mutability = InteriorMutable

Whether the type is mutable or immutable. Read more
source§

const NAME: &'static str = "WebScriptObject"

The name of the Objective-C class that this type represents. Read more
source§

fn class() -> &'static AnyClass

Get a reference to the Objective-C class that this type represents. Read more
source§

fn as_super(&self) -> &Self::Super

Get an immutable reference to the superclass.
source§

fn as_super_mut(&mut self) -> &mut Self::Super

Get a mutable reference to the superclass.
source§

fn retain(&self) -> Retained<Self>
where Self: IsRetainable + Sized,

Increment the reference count of the receiver. Read more
source§

fn alloc() -> Allocated<Self>

Allocate a new instance of the class. Read more
source§

impl Debug for WebScriptObject

source§

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

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

impl Deref for WebScriptObject

§

type Target = NSObject

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl DerefMut for WebScriptObject

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl Hash for WebScriptObject

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl NSObjectProtocol for WebScriptObject

source§

fn isEqual(&self, other: &AnyObject) -> bool
where Self: Sized + Message,

Check whether the object is equal to an arbitrary other object. Read more
source§

fn hash(&self) -> usize
where Self: Sized + Message,

An integer that can be used as a table address in a hash table structure. Read more
source§

fn isKindOfClass(&self, cls: &AnyClass) -> bool
where Self: Sized + Message,

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
where T: ClassType, Self: Sized + Message,

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
where Self: Sized + Message,

Check if the object is an instance of a specific class, without checking subclasses. Read more
source§

fn respondsToSelector(&self, aSelector: Sel) -> bool
where Self: Sized + Message,

Check whether the object implements or inherits a method with the given selector. Read more
source§

fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
where Self: Sized + Message,

Check whether the object conforms to a given protocol. Read more
source§

fn description(&self) -> Retained<NSObject>
where Self: Sized + Message,

A textual representation of the object. Read more
source§

fn debugDescription(&self) -> Retained<NSObject>
where Self: Sized + Message,

A textual representation of the object to use when debugging. Read more
source§

fn isProxy(&self) -> bool
where Self: Sized + Message,

Check whether the receiver is a subclass of the NSProxy root class instead of the usual NSObject. Read more
source§

fn retainCount(&self) -> usize
where Self: Sized + Message,

The reference count of the object. Read more
source§

impl PartialEq for WebScriptObject

source§

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

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

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

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

impl RefEncode for WebScriptObject

source§

const ENCODING_REF: Encoding = <NSObject as ::objc2::RefEncode>::ENCODING_REF

The Objective-C type-encoding for a reference of this type. Read more
source§

impl Eq for WebScriptObject

source§

impl Message for WebScriptObject

source§

impl StructuralPartialEq for WebScriptObject

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CounterpartOrSelf for T
where T: ClassType + ?Sized, <T as ClassType>::Mutability: MutabilityCounterpartOrSelf<T>,

§

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

The mutable counterpart of the type, or Self if the type has no mutable counterpart. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

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

§

type Error = Infallible

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

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

Performs the conversion.
source§

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

§

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

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

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

Performs the conversion.
source§

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

source§

impl<T> IsAllocableAnyThread for T
where T: ClassType + ?Sized, <T as ClassType>::Mutability: MutabilityIsAllocableAnyThread,

source§

impl<T> IsIdCloneable for T
where T: ClassType + ?Sized, <T as ClassType>::Mutability: MutabilityIsIdCloneable,

source§

impl<T> IsRetainable for T
where T: ClassType + ?Sized, <T as ClassType>::Mutability: MutabilityIsRetainable,