pub struct JsValue { /* private fields */ }Expand description
Representation of an object owned by JS.
A JsValue doesn’t actually live in Rust right now but actually in a table
owned by the wasm-bindgen generated JS glue code. Eventually the ownership
will transfer into wasm directly and this will likely become more efficient,
but for now it may be slightly slow.
Implementations
sourceimpl JsValue
impl JsValue
sourcepub fn from_str(s: &str) -> JsValue
pub fn from_str(s: &str) -> JsValue
Creates a new JS value which is a string.
The utf-8 string provided is copied to the JS heap and the string will be owned by the JS garbage collector.
sourcepub fn from_f64(n: f64) -> JsValue
pub fn from_f64(n: f64) -> JsValue
Creates a new JS value which is a number.
This function creates a JS value representing a number (a heap allocated number) and returns a handle to the JS version of it.
sourcepub fn bigint_from_str(s: &str) -> JsValue
pub fn bigint_from_str(s: &str) -> JsValue
Creates a new JS value which is a bigint from a string representing a number.
This function creates a JS value representing a bigint (a heap allocated large integer) and returns a handle to the JS version of it.
sourcepub fn from_bool(b: bool) -> JsValue
pub fn from_bool(b: bool) -> JsValue
Creates a new JS value which is a boolean.
This function creates a JS object representing a boolean (a heap allocated boolean) and returns a handle to the JS version of it.
sourcepub fn symbol(description: Option<&str>) -> JsValue
pub fn symbol(description: Option<&str>) -> JsValue
Creates a new JS symbol with the optional description specified.
This function will invoke the Symbol constructor in JS and return the
JS object corresponding to the symbol created.
sourcepub fn from_serde<T>(t: &T) -> Result<JsValue, Error> where
T: Serialize + ?Sized,
pub fn from_serde<T>(t: &T) -> Result<JsValue, Error> where
T: Serialize + ?Sized,
Creates a new JsValue from the JSON serialization of the object t
provided.
This function will serialize the provided value t to a JSON string,
send the JSON string to JS, parse it into a JS object, and then return
a handle to the JS object. This is unlikely to be super speedy so it’s
not recommended for large payloads, but it’s a nice to have in some
situations!
Usage of this API requires activating the serde-serialize feature of
the wasm-bindgen crate.
Errors
Returns any error encountered when serializing T into JSON.
sourcepub fn into_serde<T>(&self) -> Result<T, Error> where
T: for<'a> Deserialize<'a>,
pub fn into_serde<T>(&self) -> Result<T, Error> where
T: for<'a> Deserialize<'a>,
Invokes JSON.stringify on this value and then parses the resulting
JSON into an arbitrary Rust value.
This function will first call JSON.stringify on the JsValue itself.
The resulting string is then passed into Rust which then parses it as
JSON into the resulting value.
Usage of this API requires activating the serde-serialize feature of
the wasm-bindgen crate.
Errors
Returns any error encountered when parsing the JSON into a T.
sourcepub fn as_f64(&self) -> Option<f64>
pub fn as_f64(&self) -> Option<f64>
Returns the f64 value of this JS value if it’s an instance of a
number.
If this JS value is not an instance of a number then this returns
None.
sourcepub fn as_string(&self) -> Option<String>
pub fn as_string(&self) -> Option<String>
If this JS value is a string value, this function copies the JS string
value into wasm linear memory, encoded as UTF-8, and returns it as a
Rust String.
To avoid the copying and re-encoding, consider the
JsString::try_from() function from js-sys
instead.
If this JS value is not an instance of a string or if it’s not valid
utf-8 then this returns None.
UTF-16 vs UTF-8
JavaScript strings in general are encoded as UTF-16, but Rust strings
are encoded as UTF-8. This can cause the Rust string to look a bit
different than the JS string sometimes. For more details see the
documentation about the str type which contains a few
caveats about the encodings.
sourcepub fn as_bool(&self) -> Option<bool>
pub fn as_bool(&self) -> Option<bool>
Returns the bool value of this JS value if it’s an instance of a
boolean.
If this JS value is not an instance of a boolean then this returns
None.
sourcepub fn is_undefined(&self) -> bool
pub fn is_undefined(&self) -> bool
Tests whether this JS value is undefined
sourcepub fn is_function(&self) -> bool
pub fn is_function(&self) -> bool
Tests whether the type of this JS value is function.
sourcepub fn js_in(&self, obj: &JsValue) -> bool
pub fn js_in(&self, obj: &JsValue) -> bool
Applies the binary in JS operator on the two JsValues.
sourcepub fn loose_eq(&self, other: &JsValue) -> bool
pub fn loose_eq(&self, other: &JsValue) -> bool
Compare two JsValues for equality, using the == operator in JS.
sourcepub fn unsigned_shr(&self, rhs: &JsValue) -> u32
pub fn unsigned_shr(&self, rhs: &JsValue) -> u32
Applies the binary >>> JS operator on the two JsValues.
sourcepub fn checked_div(&self, rhs: &JsValue) -> JsValue
pub fn checked_div(&self, rhs: &JsValue) -> JsValue
Applies the binary / JS operator on two JsValues, catching and returning any RangeError thrown.
sourcepub fn pow(&self, rhs: &JsValue) -> JsValue
pub fn pow(&self, rhs: &JsValue) -> JsValue
Applies the binary ** JS operator on the two JsValues.
sourcepub fn lt(&self, other: &JsValue) -> bool
pub fn lt(&self, other: &JsValue) -> bool
Applies the binary < JS operator on the two JsValues.
sourcepub fn le(&self, other: &JsValue) -> bool
pub fn le(&self, other: &JsValue) -> bool
Applies the binary <= JS operator on the two JsValues.
sourcepub fn ge(&self, other: &JsValue) -> bool
pub fn ge(&self, other: &JsValue) -> bool
Applies the binary >= JS operator on the two JsValues.
sourcepub fn gt(&self, other: &JsValue) -> bool
pub fn gt(&self, other: &JsValue) -> bool
Applies the binary > JS operator on the two JsValues.
sourcepub fn unchecked_into_f64(&self) -> f64
pub fn unchecked_into_f64(&self) -> f64
Applies the unary + JS operator on a JsValue. Can throw.
Trait Implementations
sourceimpl AsRef<JsValue> for HtmlStyleElement
impl AsRef<JsValue> for HtmlStyleElement
sourceimpl AsRef<JsValue> for HtmlMenuItemElement
impl AsRef<JsValue> for HtmlMenuItemElement
sourceimpl AsRef<JsValue> for HtmlLinkElement
impl AsRef<JsValue> for HtmlLinkElement
sourceimpl AsRef<JsValue> for HtmlTextAreaElement
impl AsRef<JsValue> for HtmlTextAreaElement
sourceimpl AsRef<JsValue> for HtmlHeadElement
impl AsRef<JsValue> for HtmlHeadElement
sourceimpl AsRef<JsValue> for AnimationEvent
impl AsRef<JsValue> for AnimationEvent
sourceimpl AsRef<JsValue> for ReadableStream
impl AsRef<JsValue> for ReadableStream
sourceimpl AsRef<JsValue> for HtmlFieldSetElement
impl AsRef<JsValue> for HtmlFieldSetElement
sourceimpl AsRef<JsValue> for HtmlCollection
impl AsRef<JsValue> for HtmlCollection
sourceimpl AsRef<JsValue> for HtmlOptGroupElement
impl AsRef<JsValue> for HtmlOptGroupElement
sourceimpl AsRef<JsValue> for HtmlSelectElement
impl AsRef<JsValue> for HtmlSelectElement
sourceimpl AsRef<JsValue> for HtmlInputElement
impl AsRef<JsValue> for HtmlInputElement
sourceimpl AsRef<JsValue> for KeyboardEvent
impl AsRef<JsValue> for KeyboardEvent
sourceimpl AsRef<JsValue> for HtmlDetailsElement
impl AsRef<JsValue> for HtmlDetailsElement
sourceimpl AsRef<JsValue> for CharacterData
impl AsRef<JsValue> for CharacterData
sourceimpl AsRef<JsValue> for HtmlOptionElement
impl AsRef<JsValue> for HtmlOptionElement
sourceimpl AsRef<JsValue> for HtmlButtonElement
impl AsRef<JsValue> for HtmlButtonElement
sourceimpl AsRef<JsValue> for HashChangeEvent
impl AsRef<JsValue> for HashChangeEvent
sourceimpl AsRef<JsValue> for IteratorNext
impl AsRef<JsValue> for IteratorNext
sourceimpl AsRef<JsValue> for ReferenceError
impl AsRef<JsValue> for ReferenceError
sourceimpl AsRef<JsValue> for TransitionEvent
impl AsRef<JsValue> for TransitionEvent
sourceimpl AsRef<JsValue> for NumberFormat
impl AsRef<JsValue> for NumberFormat
sourceimpl AsRef<JsValue> for CompileError
impl AsRef<JsValue> for CompileError
sourceimpl AsRef<JsValue> for RuntimeError
impl AsRef<JsValue> for RuntimeError
sourceimpl AsRef<JsValue> for Float32Array
impl AsRef<JsValue> for Float32Array
sourceimpl AsRef<JsValue> for BigUint64Array
impl AsRef<JsValue> for BigUint64Array
sourceimpl AsRef<JsValue> for AsyncIterator
impl AsRef<JsValue> for AsyncIterator
sourceimpl AsRef<JsValue> for SharedArrayBuffer
impl AsRef<JsValue> for SharedArrayBuffer
sourceimpl AsRef<JsValue> for ScrollToOptions
impl AsRef<JsValue> for ScrollToOptions
sourceimpl AsRef<JsValue> for Float64Array
impl AsRef<JsValue> for Float64Array
sourceimpl AsRef<JsValue> for DateTimeFormat
impl AsRef<JsValue> for DateTimeFormat
sourceimpl AsRef<JsValue> for BigInt64Array
impl AsRef<JsValue> for BigInt64Array
sourceimpl AsRef<JsValue> for Uint8ClampedArray
impl AsRef<JsValue> for Uint8ClampedArray
sourceimpl From<AnimationEvent> for JsValue
impl From<AnimationEvent> for JsValue
sourcefn from(obj: AnimationEvent) -> JsValue
fn from(obj: AnimationEvent) -> JsValue
Performs the conversion.
sourceimpl From<ArrayBuffer> for JsValue
impl From<ArrayBuffer> for JsValue
sourcefn from(obj: ArrayBuffer) -> JsValue
fn from(obj: ArrayBuffer) -> JsValue
Performs the conversion.
sourceimpl From<AsyncIterator> for JsValue
impl From<AsyncIterator> for JsValue
sourcefn from(obj: AsyncIterator) -> JsValue
fn from(obj: AsyncIterator) -> JsValue
Performs the conversion.
sourceimpl From<BigInt64Array> for JsValue
impl From<BigInt64Array> for JsValue
sourcefn from(obj: BigInt64Array) -> JsValue
fn from(obj: BigInt64Array) -> JsValue
Performs the conversion.
sourceimpl From<BigUint64Array> for JsValue
impl From<BigUint64Array> for JsValue
sourcefn from(obj: BigUint64Array) -> JsValue
fn from(obj: BigUint64Array) -> JsValue
Performs the conversion.
sourceimpl From<CharacterData> for JsValue
impl From<CharacterData> for JsValue
sourcefn from(obj: CharacterData) -> JsValue
fn from(obj: CharacterData) -> JsValue
Performs the conversion.
sourceimpl From<CompileError> for JsValue
impl From<CompileError> for JsValue
sourcefn from(obj: CompileError) -> JsValue
fn from(obj: CompileError) -> JsValue
Performs the conversion.
sourceimpl From<DateTimeFormat> for JsValue
impl From<DateTimeFormat> for JsValue
sourcefn from(obj: DateTimeFormat) -> JsValue
fn from(obj: DateTimeFormat) -> JsValue
Performs the conversion.
sourceimpl From<EventTarget> for JsValue
impl From<EventTarget> for JsValue
sourcefn from(obj: EventTarget) -> JsValue
fn from(obj: EventTarget) -> JsValue
Performs the conversion.
sourceimpl From<Float32Array> for JsValue
impl From<Float32Array> for JsValue
sourcefn from(obj: Float32Array) -> JsValue
fn from(obj: Float32Array) -> JsValue
Performs the conversion.
sourceimpl From<Float64Array> for JsValue
impl From<Float64Array> for JsValue
sourcefn from(obj: Float64Array) -> JsValue
fn from(obj: Float64Array) -> JsValue
Performs the conversion.
sourceimpl From<HashChangeEvent> for JsValue
impl From<HashChangeEvent> for JsValue
sourcefn from(obj: HashChangeEvent) -> JsValue
fn from(obj: HashChangeEvent) -> JsValue
Performs the conversion.
sourceimpl From<HtmlButtonElement> for JsValue
impl From<HtmlButtonElement> for JsValue
sourcefn from(obj: HtmlButtonElement) -> JsValue
fn from(obj: HtmlButtonElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlCollection> for JsValue
impl From<HtmlCollection> for JsValue
sourcefn from(obj: HtmlCollection) -> JsValue
fn from(obj: HtmlCollection) -> JsValue
Performs the conversion.
sourceimpl From<HtmlDetailsElement> for JsValue
impl From<HtmlDetailsElement> for JsValue
sourcefn from(obj: HtmlDetailsElement) -> JsValue
fn from(obj: HtmlDetailsElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlElement> for JsValue
impl From<HtmlElement> for JsValue
sourcefn from(obj: HtmlElement) -> JsValue
fn from(obj: HtmlElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlFieldSetElement> for JsValue
impl From<HtmlFieldSetElement> for JsValue
sourcefn from(obj: HtmlFieldSetElement) -> JsValue
fn from(obj: HtmlFieldSetElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlHeadElement> for JsValue
impl From<HtmlHeadElement> for JsValue
sourcefn from(obj: HtmlHeadElement) -> JsValue
fn from(obj: HtmlHeadElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlInputElement> for JsValue
impl From<HtmlInputElement> for JsValue
sourcefn from(obj: HtmlInputElement) -> JsValue
fn from(obj: HtmlInputElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlLinkElement> for JsValue
impl From<HtmlLinkElement> for JsValue
sourcefn from(obj: HtmlLinkElement) -> JsValue
fn from(obj: HtmlLinkElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlMenuItemElement> for JsValue
impl From<HtmlMenuItemElement> for JsValue
sourcefn from(obj: HtmlMenuItemElement) -> JsValue
fn from(obj: HtmlMenuItemElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlOptGroupElement> for JsValue
impl From<HtmlOptGroupElement> for JsValue
sourcefn from(obj: HtmlOptGroupElement) -> JsValue
fn from(obj: HtmlOptGroupElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlOptionElement> for JsValue
impl From<HtmlOptionElement> for JsValue
sourcefn from(obj: HtmlOptionElement) -> JsValue
fn from(obj: HtmlOptionElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlSelectElement> for JsValue
impl From<HtmlSelectElement> for JsValue
sourcefn from(obj: HtmlSelectElement) -> JsValue
fn from(obj: HtmlSelectElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlStyleElement> for JsValue
impl From<HtmlStyleElement> for JsValue
sourcefn from(obj: HtmlStyleElement) -> JsValue
fn from(obj: HtmlStyleElement) -> JsValue
Performs the conversion.
sourceimpl From<HtmlTextAreaElement> for JsValue
impl From<HtmlTextAreaElement> for JsValue
sourcefn from(obj: HtmlTextAreaElement) -> JsValue
fn from(obj: HtmlTextAreaElement) -> JsValue
Performs the conversion.
sourceimpl From<InputEvent> for JsValue
impl From<InputEvent> for JsValue
sourcefn from(obj: InputEvent) -> JsValue
fn from(obj: InputEvent) -> JsValue
Performs the conversion.
sourceimpl From<Int16Array> for JsValue
impl From<Int16Array> for JsValue
sourcefn from(obj: Int16Array) -> JsValue
fn from(obj: Int16Array) -> JsValue
Performs the conversion.
sourceimpl From<Int32Array> for JsValue
impl From<Int32Array> for JsValue
sourcefn from(obj: Int32Array) -> JsValue
fn from(obj: Int32Array) -> JsValue
Performs the conversion.
sourceimpl From<IteratorNext> for JsValue
impl From<IteratorNext> for JsValue
sourcefn from(obj: IteratorNext) -> JsValue
fn from(obj: IteratorNext) -> JsValue
Performs the conversion.
sourceimpl From<JsValue> for HtmlButtonElement
impl From<JsValue> for HtmlButtonElement
sourcefn from(obj: JsValue) -> HtmlButtonElement
fn from(obj: JsValue) -> HtmlButtonElement
Performs the conversion.
sourceimpl From<JsValue> for HtmlDetailsElement
impl From<JsValue> for HtmlDetailsElement
sourcefn from(obj: JsValue) -> HtmlDetailsElement
fn from(obj: JsValue) -> HtmlDetailsElement
Performs the conversion.
sourceimpl From<JsValue> for HtmlCollection
impl From<JsValue> for HtmlCollection
sourcefn from(obj: JsValue) -> HtmlCollection
fn from(obj: JsValue) -> HtmlCollection
Performs the conversion.
sourceimpl From<JsValue> for HtmlLinkElement
impl From<JsValue> for HtmlLinkElement
sourcefn from(obj: JsValue) -> HtmlLinkElement
fn from(obj: JsValue) -> HtmlLinkElement
Performs the conversion.
sourceimpl From<JsValue> for ReadableStream
impl From<JsValue> for ReadableStream
sourcefn from(obj: JsValue) -> ReadableStream
fn from(obj: JsValue) -> ReadableStream
Performs the conversion.
sourceimpl From<JsValue> for EventTarget
impl From<JsValue> for EventTarget
sourcefn from(obj: JsValue) -> EventTarget
fn from(obj: JsValue) -> EventTarget
Performs the conversion.
sourceimpl From<JsValue> for MouseEvent
impl From<JsValue> for MouseEvent
sourcefn from(obj: JsValue) -> MouseEvent
fn from(obj: JsValue) -> MouseEvent
Performs the conversion.
sourceimpl From<JsValue> for HtmlMenuItemElement
impl From<JsValue> for HtmlMenuItemElement
sourcefn from(obj: JsValue) -> HtmlMenuItemElement
fn from(obj: JsValue) -> HtmlMenuItemElement
Performs the conversion.
sourceimpl From<JsValue> for Performance
impl From<JsValue> for Performance
sourcefn from(obj: JsValue) -> Performance
fn from(obj: JsValue) -> Performance
Performs the conversion.
sourceimpl From<JsValue> for HtmlInputElement
impl From<JsValue> for HtmlInputElement
sourcefn from(obj: JsValue) -> HtmlInputElement
fn from(obj: JsValue) -> HtmlInputElement
Performs the conversion.
sourceimpl From<JsValue> for HtmlHeadElement
impl From<JsValue> for HtmlHeadElement
sourcefn from(obj: JsValue) -> HtmlHeadElement
fn from(obj: JsValue) -> HtmlHeadElement
Performs the conversion.
sourceimpl From<JsValue> for InputEvent
impl From<JsValue> for InputEvent
sourcefn from(obj: JsValue) -> InputEvent
fn from(obj: JsValue) -> InputEvent
Performs the conversion.
sourceimpl From<JsValue> for TransitionEvent
impl From<JsValue> for TransitionEvent
sourcefn from(obj: JsValue) -> TransitionEvent
fn from(obj: JsValue) -> TransitionEvent
Performs the conversion.
sourceimpl From<JsValue> for HtmlElement
impl From<JsValue> for HtmlElement
sourcefn from(obj: JsValue) -> HtmlElement
fn from(obj: JsValue) -> HtmlElement
Performs the conversion.
sourceimpl From<JsValue> for AnimationEvent
impl From<JsValue> for AnimationEvent
sourcefn from(obj: JsValue) -> AnimationEvent
fn from(obj: JsValue) -> AnimationEvent
Performs the conversion.
sourceimpl From<JsValue> for HtmlFieldSetElement
impl From<JsValue> for HtmlFieldSetElement
sourcefn from(obj: JsValue) -> HtmlFieldSetElement
fn from(obj: JsValue) -> HtmlFieldSetElement
Performs the conversion.
sourceimpl From<JsValue> for ScrollToOptions
impl From<JsValue> for ScrollToOptions
sourcefn from(obj: JsValue) -> ScrollToOptions
fn from(obj: JsValue) -> ScrollToOptions
Performs the conversion.
sourceimpl From<JsValue> for HtmlTextAreaElement
impl From<JsValue> for HtmlTextAreaElement
sourcefn from(obj: JsValue) -> HtmlTextAreaElement
fn from(obj: JsValue) -> HtmlTextAreaElement
Performs the conversion.
sourceimpl From<JsValue> for RequestInit
impl From<JsValue> for RequestInit
sourcefn from(obj: JsValue) -> RequestInit
fn from(obj: JsValue) -> RequestInit
Performs the conversion.
sourceimpl From<JsValue> for HtmlOptionElement
impl From<JsValue> for HtmlOptionElement
sourcefn from(obj: JsValue) -> HtmlOptionElement
fn from(obj: JsValue) -> HtmlOptionElement
Performs the conversion.
sourceimpl From<JsValue> for KeyboardEvent
impl From<JsValue> for KeyboardEvent
sourcefn from(obj: JsValue) -> KeyboardEvent
fn from(obj: JsValue) -> KeyboardEvent
Performs the conversion.
sourceimpl From<JsValue> for CharacterData
impl From<JsValue> for CharacterData
sourcefn from(obj: JsValue) -> CharacterData
fn from(obj: JsValue) -> CharacterData
Performs the conversion.
sourceimpl From<JsValue> for HashChangeEvent
impl From<JsValue> for HashChangeEvent
sourcefn from(obj: JsValue) -> HashChangeEvent
fn from(obj: JsValue) -> HashChangeEvent
Performs the conversion.
sourceimpl From<JsValue> for Int16Array
impl From<JsValue> for Int16Array
sourcefn from(obj: JsValue) -> Int16Array
fn from(obj: JsValue) -> Int16Array
Performs the conversion.
sourceimpl From<JsValue> for AsyncIterator
impl From<JsValue> for AsyncIterator
sourcefn from(obj: JsValue) -> AsyncIterator
fn from(obj: JsValue) -> AsyncIterator
Performs the conversion.
sourceimpl From<JsValue> for Uint16Array
impl From<JsValue> for Uint16Array
sourcefn from(obj: JsValue) -> Uint16Array
fn from(obj: JsValue) -> Uint16Array
Performs the conversion.
sourceimpl From<JsValue> for PluralRules
impl From<JsValue> for PluralRules
sourcefn from(obj: JsValue) -> PluralRules
fn from(obj: JsValue) -> PluralRules
Performs the conversion.
sourceimpl From<JsValue> for HtmlOptGroupElement
impl From<JsValue> for HtmlOptGroupElement
sourcefn from(obj: JsValue) -> HtmlOptGroupElement
fn from(obj: JsValue) -> HtmlOptGroupElement
Performs the conversion.
sourceimpl From<JsValue> for CompileError
impl From<JsValue> for CompileError
sourcefn from(obj: JsValue) -> CompileError
fn from(obj: JsValue) -> CompileError
Performs the conversion.
sourceimpl From<JsValue> for Uint32Array
impl From<JsValue> for Uint32Array
sourcefn from(obj: JsValue) -> Uint32Array
fn from(obj: JsValue) -> Uint32Array
Performs the conversion.
sourceimpl From<JsValue> for Float64Array
impl From<JsValue> for Float64Array
sourcefn from(obj: JsValue) -> Float64Array
fn from(obj: JsValue) -> Float64Array
Performs the conversion.
sourceimpl From<JsValue> for RangeError
impl From<JsValue> for RangeError
sourcefn from(obj: JsValue) -> RangeError
fn from(obj: JsValue) -> RangeError
Performs the conversion.
sourceimpl From<JsValue> for SharedArrayBuffer
impl From<JsValue> for SharedArrayBuffer
sourcefn from(obj: JsValue) -> SharedArrayBuffer
fn from(obj: JsValue) -> SharedArrayBuffer
Performs the conversion.
sourceimpl From<JsValue> for HtmlSelectElement
impl From<JsValue> for HtmlSelectElement
sourcefn from(obj: JsValue) -> HtmlSelectElement
fn from(obj: JsValue) -> HtmlSelectElement
Performs the conversion.
sourceimpl From<JsValue> for NumberFormat
impl From<JsValue> for NumberFormat
sourcefn from(obj: JsValue) -> NumberFormat
fn from(obj: JsValue) -> NumberFormat
Performs the conversion.
sourceimpl From<JsValue> for BigUint64Array
impl From<JsValue> for BigUint64Array
sourcefn from(obj: JsValue) -> BigUint64Array
fn from(obj: JsValue) -> BigUint64Array
Performs the conversion.
sourceimpl From<JsValue> for DateTimeFormat
impl From<JsValue> for DateTimeFormat
sourcefn from(obj: JsValue) -> DateTimeFormat
fn from(obj: JsValue) -> DateTimeFormat
Performs the conversion.
sourceimpl From<JsValue> for BigInt64Array
impl From<JsValue> for BigInt64Array
sourcefn from(obj: JsValue) -> BigInt64Array
fn from(obj: JsValue) -> BigInt64Array
Performs the conversion.
sourceimpl From<JsValue> for Int32Array
impl From<JsValue> for Int32Array
sourcefn from(obj: JsValue) -> Int32Array
fn from(obj: JsValue) -> Int32Array
Performs the conversion.
sourceimpl From<JsValue> for ReferenceError
impl From<JsValue> for ReferenceError
sourcefn from(obj: JsValue) -> ReferenceError
fn from(obj: JsValue) -> ReferenceError
Performs the conversion.
sourceimpl From<JsValue> for Float32Array
impl From<JsValue> for Float32Array
sourcefn from(obj: JsValue) -> Float32Array
fn from(obj: JsValue) -> Float32Array
Performs the conversion.
sourceimpl From<JsValue> for IteratorNext
impl From<JsValue> for IteratorNext
sourcefn from(obj: JsValue) -> IteratorNext
fn from(obj: JsValue) -> IteratorNext
Performs the conversion.
sourceimpl From<JsValue> for Uint8Array
impl From<JsValue> for Uint8Array
sourcefn from(obj: JsValue) -> Uint8Array
fn from(obj: JsValue) -> Uint8Array
Performs the conversion.
sourceimpl From<JsValue> for Uint8ClampedArray
impl From<JsValue> for Uint8ClampedArray
sourcefn from(obj: JsValue) -> Uint8ClampedArray
fn from(obj: JsValue) -> Uint8ClampedArray
Performs the conversion.
sourceimpl From<JsValue> for ArrayBuffer
impl From<JsValue> for ArrayBuffer
sourcefn from(obj: JsValue) -> ArrayBuffer
fn from(obj: JsValue) -> ArrayBuffer
Performs the conversion.
sourceimpl From<JsValue> for SyntaxError
impl From<JsValue> for SyntaxError
sourcefn from(obj: JsValue) -> SyntaxError
fn from(obj: JsValue) -> SyntaxError
Performs the conversion.
sourceimpl From<JsValue> for HtmlStyleElement
impl From<JsValue> for HtmlStyleElement
sourcefn from(obj: JsValue) -> HtmlStyleElement
fn from(obj: JsValue) -> HtmlStyleElement
Performs the conversion.
sourceimpl From<JsValue> for RuntimeError
impl From<JsValue> for RuntimeError
sourcefn from(obj: JsValue) -> RuntimeError
fn from(obj: JsValue) -> RuntimeError
Performs the conversion.
sourceimpl From<KeyboardEvent> for JsValue
impl From<KeyboardEvent> for JsValue
sourcefn from(obj: KeyboardEvent) -> JsValue
fn from(obj: KeyboardEvent) -> JsValue
Performs the conversion.
sourceimpl From<MouseEvent> for JsValue
impl From<MouseEvent> for JsValue
sourcefn from(obj: MouseEvent) -> JsValue
fn from(obj: MouseEvent) -> JsValue
Performs the conversion.
sourceimpl From<NumberFormat> for JsValue
impl From<NumberFormat> for JsValue
sourcefn from(obj: NumberFormat) -> JsValue
fn from(obj: NumberFormat) -> JsValue
Performs the conversion.
sourceimpl From<Performance> for JsValue
impl From<Performance> for JsValue
sourcefn from(obj: Performance) -> JsValue
fn from(obj: Performance) -> JsValue
Performs the conversion.
sourceimpl From<PluralRules> for JsValue
impl From<PluralRules> for JsValue
sourcefn from(obj: PluralRules) -> JsValue
fn from(obj: PluralRules) -> JsValue
Performs the conversion.
sourceimpl From<RangeError> for JsValue
impl From<RangeError> for JsValue
sourcefn from(obj: RangeError) -> JsValue
fn from(obj: RangeError) -> JsValue
Performs the conversion.
sourceimpl From<ReadableStream> for JsValue
impl From<ReadableStream> for JsValue
sourcefn from(obj: ReadableStream) -> JsValue
fn from(obj: ReadableStream) -> JsValue
Performs the conversion.
sourceimpl From<ReferenceError> for JsValue
impl From<ReferenceError> for JsValue
sourcefn from(obj: ReferenceError) -> JsValue
fn from(obj: ReferenceError) -> JsValue
Performs the conversion.
sourceimpl From<RequestInit> for JsValue
impl From<RequestInit> for JsValue
sourcefn from(obj: RequestInit) -> JsValue
fn from(obj: RequestInit) -> JsValue
Performs the conversion.
sourceimpl From<RuntimeError> for JsValue
impl From<RuntimeError> for JsValue
sourcefn from(obj: RuntimeError) -> JsValue
fn from(obj: RuntimeError) -> JsValue
Performs the conversion.
sourceimpl From<ScrollToOptions> for JsValue
impl From<ScrollToOptions> for JsValue
sourcefn from(obj: ScrollToOptions) -> JsValue
fn from(obj: ScrollToOptions) -> JsValue
Performs the conversion.
sourcefn from(obj: SharedArrayBuffer) -> JsValue
fn from(obj: SharedArrayBuffer) -> JsValue
Performs the conversion.
sourceimpl From<SyntaxError> for JsValue
impl From<SyntaxError> for JsValue
sourcefn from(obj: SyntaxError) -> JsValue
fn from(obj: SyntaxError) -> JsValue
Performs the conversion.
sourceimpl From<TransitionEvent> for JsValue
impl From<TransitionEvent> for JsValue
sourcefn from(obj: TransitionEvent) -> JsValue
fn from(obj: TransitionEvent) -> JsValue
Performs the conversion.
sourceimpl From<Uint16Array> for JsValue
impl From<Uint16Array> for JsValue
sourcefn from(obj: Uint16Array) -> JsValue
fn from(obj: Uint16Array) -> JsValue
Performs the conversion.
sourceimpl From<Uint32Array> for JsValue
impl From<Uint32Array> for JsValue
sourcefn from(obj: Uint32Array) -> JsValue
fn from(obj: Uint32Array) -> JsValue
Performs the conversion.
sourceimpl From<Uint8Array> for JsValue
impl From<Uint8Array> for JsValue
sourcefn from(obj: Uint8Array) -> JsValue
fn from(obj: Uint8Array) -> JsValue
Performs the conversion.
sourceimpl From<Uint8ClampedArray> for JsValue
impl From<Uint8ClampedArray> for JsValue
sourcefn from(obj: Uint8ClampedArray) -> JsValue
fn from(obj: Uint8ClampedArray) -> JsValue
Performs the conversion.
sourceimpl FromWasmAbi for JsValue
impl FromWasmAbi for JsValue
sourceimpl<'a> IntoWasmAbi for &'a JsValue
impl<'a> IntoWasmAbi for &'a JsValue
sourceimpl IntoWasmAbi for JsValue
impl IntoWasmAbi for JsValue
sourceimpl JsCast for JsValue
impl JsCast for JsValue
sourcefn instanceof(_val: &JsValue) -> bool
fn instanceof(_val: &JsValue) -> bool
Performs a dynamic instanceof check to see whether the JsValue
provided is an instance of this type. Read more
sourcefn unchecked_from_js(val: JsValue) -> JsValue
fn unchecked_from_js(val: JsValue) -> JsValue
Performs a zero-cost unchecked conversion from a JsValue into an
instance of Self Read more
sourcefn unchecked_from_js_ref(val: &JsValue) -> &JsValue
fn unchecked_from_js_ref(val: &JsValue) -> &JsValue
Performs a zero-cost unchecked conversion from a &JsValue into an
instance of &Self. Read more
sourcefn has_type<T>(&self) -> bool where
T: JsCast,
fn has_type<T>(&self) -> bool where
T: JsCast,
Test whether this JS value has a type T. Read more
sourcefn dyn_into<T>(self) -> Result<T, Self> where
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self> where
T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the
target type T. Read more
sourcefn dyn_ref<T>(&self) -> Option<&T> where
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T> where
T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the
target type T. Read more
sourcefn unchecked_into<T>(self) -> T where
T: JsCast,
fn unchecked_into<T>(self) -> T where
T: JsCast,
Performs a zero-cost unchecked cast into the specified type. Read more
sourcefn unchecked_ref<T>(&self) -> &T where
T: JsCast,
fn unchecked_ref<T>(&self) -> &T where
T: JsCast,
Performs a zero-cost unchecked cast into a reference to the specified type. Read more
sourcefn is_instance_of<T>(&self) -> bool where
T: JsCast,
fn is_instance_of<T>(&self) -> bool where
T: JsCast,
Test whether this JS value is an instance of the type T. Read more
sourcefn is_type_of(val: &JsValue) -> bool
fn is_type_of(val: &JsValue) -> bool
Performs a dynamic check to see whether the JsValue provided
is a value of this type. Read more
sourceimpl RefFromWasmAbi for JsValue
impl RefFromWasmAbi for JsValue
type Anchor = ManuallyDrop<JsValue>
type Anchor = ManuallyDrop<JsValue>
The type that holds the reference to Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous. Read more
sourceunsafe fn ref_from_abi(js: u32) -> <JsValue as RefFromWasmAbi>::Anchor
unsafe fn ref_from_abi(js: u32) -> <JsValue as RefFromWasmAbi>::Anchor
Recover a Self::Anchor from Self::Abi. Read more
Auto Trait Implementations
impl RefUnwindSafe for JsValue
impl !Send for JsValue
impl !Sync for JsValue
impl Unpin for JsValue
impl UnwindSafe for JsValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
sourcefn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
