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 MouseEvent
 
impl AsRef<JsValue> for MouseEvent
sourceimpl AsRef<JsValue> for EventTarget
 
impl AsRef<JsValue> for EventTarget
sourceimpl AsRef<JsValue> for CharacterData
 
impl AsRef<JsValue> for CharacterData
sourceimpl AsRef<JsValue> for HtmlElement
 
impl AsRef<JsValue> for HtmlElement
sourceimpl From<AbortController> for JsValue
 
impl From<AbortController> for JsValue
sourcefn from(obj: AbortController) -> JsValue
 
fn from(obj: AbortController) -> JsValue
Converts to this type from the input type.
sourceimpl From<AbortSignal> for JsValue
 
impl From<AbortSignal> for JsValue
sourcefn from(obj: AbortSignal) -> JsValue
 
fn from(obj: AbortSignal) -> JsValue
Converts to this type from the input type.
sourceimpl From<AddEventListenerOptions> for JsValue
 
impl From<AddEventListenerOptions> for JsValue
sourcefn from(obj: AddEventListenerOptions) -> JsValue
 
fn from(obj: AddEventListenerOptions) -> JsValue
Converts to this type from the input type.
sourceimpl From<ArrayBuffer> for JsValue
 
impl From<ArrayBuffer> for JsValue
sourcefn from(obj: ArrayBuffer) -> JsValue
 
fn from(obj: ArrayBuffer) -> JsValue
Converts to this type from the input type.
sourceimpl From<AsyncIterator> for JsValue
 
impl From<AsyncIterator> for JsValue
sourcefn from(obj: AsyncIterator) -> JsValue
 
fn from(obj: AsyncIterator) -> JsValue
Converts to this type from the input type.
sourceimpl From<BeforeUnloadEvent> for JsValue
 
impl From<BeforeUnloadEvent> for JsValue
sourcefn from(obj: BeforeUnloadEvent) -> JsValue
 
fn from(obj: BeforeUnloadEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<BigInt64Array> for JsValue
 
impl From<BigInt64Array> for JsValue
sourcefn from(obj: BigInt64Array) -> JsValue
 
fn from(obj: BigInt64Array) -> JsValue
Converts to this type from the input type.
sourceimpl From<BigUint64Array> for JsValue
 
impl From<BigUint64Array> for JsValue
sourcefn from(obj: BigUint64Array) -> JsValue
 
fn from(obj: BigUint64Array) -> JsValue
Converts to this type from the input type.
sourceimpl From<BinaryType> for JsValue
 
impl From<BinaryType> for JsValue
sourcefn from(obj: BinaryType) -> JsValue
 
fn from(obj: BinaryType) -> JsValue
Converts to this type from the input type.
sourceimpl From<BlobPropertyBag> for JsValue
 
impl From<BlobPropertyBag> for JsValue
sourcefn from(obj: BlobPropertyBag) -> JsValue
 
fn from(obj: BlobPropertyBag) -> JsValue
Converts to this type from the input type.
sourceimpl From<CanvasRenderingContext2d> for JsValue
 
impl From<CanvasRenderingContext2d> for JsValue
sourcefn from(obj: CanvasRenderingContext2d) -> JsValue
 
fn from(obj: CanvasRenderingContext2d) -> JsValue
Converts to this type from the input type.
sourceimpl From<CharacterData> for JsValue
 
impl From<CharacterData> for JsValue
sourcefn from(obj: CharacterData) -> JsValue
 
fn from(obj: CharacterData) -> JsValue
Converts to this type from the input type.
sourceimpl From<CloseEvent> for JsValue
 
impl From<CloseEvent> for JsValue
sourcefn from(obj: CloseEvent) -> JsValue
 
fn from(obj: CloseEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<CompileError> for JsValue
 
impl From<CompileError> for JsValue
sourcefn from(obj: CompileError) -> JsValue
 
fn from(obj: CompileError) -> JsValue
Converts to this type from the input type.
sourceimpl From<CustomEvent> for JsValue
 
impl From<CustomEvent> for JsValue
sourcefn from(obj: CustomEvent) -> JsValue
 
fn from(obj: CustomEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<CustomEventInit> for JsValue
 
impl From<CustomEventInit> for JsValue
sourcefn from(obj: CustomEventInit) -> JsValue
 
fn from(obj: CustomEventInit) -> JsValue
Converts to this type from the input type.
sourceimpl From<DataTransfer> for JsValue
 
impl From<DataTransfer> for JsValue
sourcefn from(obj: DataTransfer) -> JsValue
 
fn from(obj: DataTransfer) -> JsValue
Converts to this type from the input type.
sourceimpl From<DateTimeFormat> for JsValue
 
impl From<DateTimeFormat> for JsValue
sourcefn from(obj: DateTimeFormat) -> JsValue
 
fn from(obj: DateTimeFormat) -> JsValue
Converts to this type from the input type.
sourceimpl From<DomException> for JsValue
 
impl From<DomException> for JsValue
sourcefn from(obj: DomException) -> JsValue
 
fn from(obj: DomException) -> JsValue
Converts to this type from the input type.
sourceimpl From<EventTarget> for JsValue
 
impl From<EventTarget> for JsValue
sourcefn from(obj: EventTarget) -> JsValue
 
fn from(obj: EventTarget) -> JsValue
Converts to this type from the input type.
sourceimpl From<FilePropertyBag> for JsValue
 
impl From<FilePropertyBag> for JsValue
sourcefn from(obj: FilePropertyBag) -> JsValue
 
fn from(obj: FilePropertyBag) -> JsValue
Converts to this type from the input type.
sourceimpl From<FileReader> for JsValue
 
impl From<FileReader> for JsValue
sourcefn from(obj: FileReader) -> JsValue
 
fn from(obj: FileReader) -> JsValue
Converts to this type from the input type.
sourceimpl From<Float32Array> for JsValue
 
impl From<Float32Array> for JsValue
sourcefn from(obj: Float32Array) -> JsValue
 
fn from(obj: Float32Array) -> JsValue
Converts to this type from the input type.
sourceimpl From<Float64Array> for JsValue
 
impl From<Float64Array> for JsValue
sourcefn from(obj: Float64Array) -> JsValue
 
fn from(obj: Float64Array) -> JsValue
Converts to this type from the input type.
sourceimpl From<HashChangeEvent> for JsValue
 
impl From<HashChangeEvent> for JsValue
sourcefn from(obj: HashChangeEvent) -> JsValue
 
fn from(obj: HashChangeEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlButtonElement> for JsValue
 
impl From<HtmlButtonElement> for JsValue
sourcefn from(obj: HtmlButtonElement) -> JsValue
 
fn from(obj: HtmlButtonElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlCanvasElement> for JsValue
 
impl From<HtmlCanvasElement> for JsValue
sourcefn from(obj: HtmlCanvasElement) -> JsValue
 
fn from(obj: HtmlCanvasElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlCollection> for JsValue
 
impl From<HtmlCollection> for JsValue
sourcefn from(obj: HtmlCollection) -> JsValue
 
fn from(obj: HtmlCollection) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlDataElement> for JsValue
 
impl From<HtmlDataElement> for JsValue
sourcefn from(obj: HtmlDataElement) -> JsValue
 
fn from(obj: HtmlDataElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlDivElement> for JsValue
 
impl From<HtmlDivElement> for JsValue
sourcefn from(obj: HtmlDivElement) -> JsValue
 
fn from(obj: HtmlDivElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlDocument> for JsValue
 
impl From<HtmlDocument> for JsValue
sourcefn from(obj: HtmlDocument) -> JsValue
 
fn from(obj: HtmlDocument) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlElement> for JsValue
 
impl From<HtmlElement> for JsValue
sourcefn from(obj: HtmlElement) -> JsValue
 
fn from(obj: HtmlElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlFormElement> for JsValue
 
impl From<HtmlFormElement> for JsValue
sourcefn from(obj: HtmlFormElement) -> JsValue
 
fn from(obj: HtmlFormElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlHeadElement> for JsValue
 
impl From<HtmlHeadElement> for JsValue
sourcefn from(obj: HtmlHeadElement) -> JsValue
 
fn from(obj: HtmlHeadElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlInputElement> for JsValue
 
impl From<HtmlInputElement> for JsValue
sourcefn from(obj: HtmlInputElement) -> JsValue
 
fn from(obj: HtmlInputElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlLiElement> for JsValue
 
impl From<HtmlLiElement> for JsValue
sourcefn from(obj: HtmlLiElement) -> JsValue
 
fn from(obj: HtmlLiElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlMenuItemElement> for JsValue
 
impl From<HtmlMenuItemElement> for JsValue
sourcefn from(obj: HtmlMenuItemElement) -> JsValue
 
fn from(obj: HtmlMenuItemElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlMeterElement> for JsValue
 
impl From<HtmlMeterElement> for JsValue
sourcefn from(obj: HtmlMeterElement) -> JsValue
 
fn from(obj: HtmlMeterElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlOptionElement> for JsValue
 
impl From<HtmlOptionElement> for JsValue
sourcefn from(obj: HtmlOptionElement) -> JsValue
 
fn from(obj: HtmlOptionElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlOutputElement> for JsValue
 
impl From<HtmlOutputElement> for JsValue
sourcefn from(obj: HtmlOutputElement) -> JsValue
 
fn from(obj: HtmlOutputElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlParamElement> for JsValue
 
impl From<HtmlParamElement> for JsValue
sourcefn from(obj: HtmlParamElement) -> JsValue
 
fn from(obj: HtmlParamElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlProgressElement> for JsValue
 
impl From<HtmlProgressElement> for JsValue
sourcefn from(obj: HtmlProgressElement) -> JsValue
 
fn from(obj: HtmlProgressElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlSelectElement> for JsValue
 
impl From<HtmlSelectElement> for JsValue
sourcefn from(obj: HtmlSelectElement) -> JsValue
 
fn from(obj: HtmlSelectElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<HtmlTextAreaElement> for JsValue
 
impl From<HtmlTextAreaElement> for JsValue
sourcefn from(obj: HtmlTextAreaElement) -> JsValue
 
fn from(obj: HtmlTextAreaElement) -> JsValue
Converts to this type from the input type.
sourceimpl From<InputEvent> for JsValue
 
impl From<InputEvent> for JsValue
sourcefn from(obj: InputEvent) -> JsValue
 
fn from(obj: InputEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<Int16Array> for JsValue
 
impl From<Int16Array> for JsValue
sourcefn from(obj: Int16Array) -> JsValue
 
fn from(obj: Int16Array) -> JsValue
Converts to this type from the input type.
sourceimpl From<Int32Array> for JsValue
 
impl From<Int32Array> for JsValue
sourcefn from(obj: Int32Array) -> JsValue
 
fn from(obj: Int32Array) -> JsValue
Converts to this type from the input type.
sourceimpl From<IteratorNext> for JsValue
 
impl From<IteratorNext> for JsValue
sourcefn from(obj: IteratorNext) -> JsValue
 
fn from(obj: IteratorNext) -> JsValue
Converts to this type from the input type.
sourceimpl From<JsValue> for HtmlElement
 
impl From<JsValue> for HtmlElement
sourcefn from(obj: JsValue) -> HtmlElement
 
fn from(obj: JsValue) -> HtmlElement
Converts to this type from the input type.
sourceimpl From<JsValue> for MouseEvent
 
impl From<JsValue> for MouseEvent
sourcefn from(obj: JsValue) -> MouseEvent
 
fn from(obj: JsValue) -> MouseEvent
Converts to this type from the input type.
sourceimpl From<JsValue> for CharacterData
 
impl From<JsValue> for CharacterData
sourcefn from(obj: JsValue) -> CharacterData
 
fn from(obj: JsValue) -> CharacterData
Converts to this type from the input type.
sourceimpl From<JsValue> for EventTarget
 
impl From<JsValue> for EventTarget
sourcefn from(obj: JsValue) -> EventTarget
 
fn from(obj: JsValue) -> EventTarget
Converts to this type from the input type.
sourceimpl From<KeyboardEvent> for JsValue
 
impl From<KeyboardEvent> for JsValue
sourcefn from(obj: KeyboardEvent) -> JsValue
 
fn from(obj: KeyboardEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<MessageEvent> for JsValue
 
impl From<MessageEvent> for JsValue
sourcefn from(obj: MessageEvent) -> JsValue
 
fn from(obj: MessageEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<MouseEvent> for JsValue
 
impl From<MouseEvent> for JsValue
sourcefn from(obj: MouseEvent) -> JsValue
 
fn from(obj: MouseEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<NumberFormat> for JsValue
 
impl From<NumberFormat> for JsValue
sourcefn from(obj: NumberFormat) -> JsValue
 
fn from(obj: NumberFormat) -> JsValue
Converts to this type from the input type.
sourceimpl From<Performance> for JsValue
 
impl From<Performance> for JsValue
sourcefn from(obj: Performance) -> JsValue
 
fn from(obj: Performance) -> JsValue
Converts to this type from the input type.
sourceimpl From<PluralRules> for JsValue
 
impl From<PluralRules> for JsValue
sourcefn from(obj: PluralRules) -> JsValue
 
fn from(obj: PluralRules) -> JsValue
Converts to this type from the input type.
sourceimpl From<PointerEvent> for JsValue
 
impl From<PointerEvent> for JsValue
sourcefn from(obj: PointerEvent) -> JsValue
 
fn from(obj: PointerEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<PopStateEvent> for JsValue
 
impl From<PopStateEvent> for JsValue
sourcefn from(obj: PopStateEvent) -> JsValue
 
fn from(obj: PopStateEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<RangeError> for JsValue
 
impl From<RangeError> for JsValue
sourcefn from(obj: RangeError) -> JsValue
 
fn from(obj: RangeError) -> JsValue
Converts to this type from the input type.
sourceimpl From<ReferenceError> for JsValue
 
impl From<ReferenceError> for JsValue
sourcefn from(obj: ReferenceError) -> JsValue
 
fn from(obj: ReferenceError) -> JsValue
Converts to this type from the input type.
sourceimpl From<ReferrerPolicy> for JsValue
 
impl From<ReferrerPolicy> for JsValue
sourcefn from(obj: ReferrerPolicy) -> JsValue
 
fn from(obj: ReferrerPolicy) -> JsValue
Converts to this type from the input type.
sourceimpl From<RequestCache> for JsValue
 
impl From<RequestCache> for JsValue
sourcefn from(obj: RequestCache) -> JsValue
 
fn from(obj: RequestCache) -> JsValue
Converts to this type from the input type.
sourceimpl From<RequestCredentials> for JsValue
 
impl From<RequestCredentials> for JsValue
sourcefn from(obj: RequestCredentials) -> JsValue
 
fn from(obj: RequestCredentials) -> JsValue
Converts to this type from the input type.
sourceimpl From<RequestInit> for JsValue
 
impl From<RequestInit> for JsValue
sourcefn from(obj: RequestInit) -> JsValue
 
fn from(obj: RequestInit) -> JsValue
Converts to this type from the input type.
sourceimpl From<RequestMode> for JsValue
 
impl From<RequestMode> for JsValue
sourcefn from(obj: RequestMode) -> JsValue
 
fn from(obj: RequestMode) -> JsValue
Converts to this type from the input type.
sourceimpl From<RequestRedirect> for JsValue
 
impl From<RequestRedirect> for JsValue
sourcefn from(obj: RequestRedirect) -> JsValue
 
fn from(obj: RequestRedirect) -> JsValue
Converts to this type from the input type.
sourceimpl From<RuntimeError> for JsValue
 
impl From<RuntimeError> for JsValue
sourcefn from(obj: RuntimeError) -> JsValue
 
fn from(obj: RuntimeError) -> JsValue
Converts to this type from the input type.
sourcefn from(obj: SharedArrayBuffer) -> JsValue
 
fn from(obj: SharedArrayBuffer) -> JsValue
Converts to this type from the input type.
sourceimpl From<SyntaxError> for JsValue
 
impl From<SyntaxError> for JsValue
sourcefn from(obj: SyntaxError) -> JsValue
 
fn from(obj: SyntaxError) -> JsValue
Converts to this type from the input type.
sourceimpl From<TcpReadyState> for JsValue
 
impl From<TcpReadyState> for JsValue
sourcefn from(obj: TcpReadyState) -> JsValue
 
fn from(obj: TcpReadyState) -> JsValue
Converts to this type from the input type.
sourceimpl From<TouchEvent> for JsValue
 
impl From<TouchEvent> for JsValue
sourcefn from(obj: TouchEvent) -> JsValue
 
fn from(obj: TouchEvent) -> JsValue
Converts to this type from the input type.
sourceimpl From<Uint16Array> for JsValue
 
impl From<Uint16Array> for JsValue
sourcefn from(obj: Uint16Array) -> JsValue
 
fn from(obj: Uint16Array) -> JsValue
Converts to this type from the input type.
sourceimpl From<Uint32Array> for JsValue
 
impl From<Uint32Array> for JsValue
sourcefn from(obj: Uint32Array) -> JsValue
 
fn from(obj: Uint32Array) -> JsValue
Converts to this type from the input type.
sourceimpl From<Uint8Array> for JsValue
 
impl From<Uint8Array> for JsValue
sourcefn from(obj: Uint8Array) -> JsValue
 
fn from(obj: Uint8Array) -> JsValue
Converts to this type from the input type.
sourceimpl From<Uint8ClampedArray> for JsValue
 
impl From<Uint8ClampedArray> for JsValue
sourcefn from(obj: Uint8ClampedArray) -> JsValue
 
fn from(obj: Uint8ClampedArray) -> JsValue
Converts to this type from the input type.
sourceimpl From<UrlSearchParams> for JsValue
 
impl From<UrlSearchParams> for JsValue
sourcefn from(obj: UrlSearchParams) -> JsValue
 
fn from(obj: UrlSearchParams) -> JsValue
Converts to this type from the input type.
sourceimpl From<WheelEvent> for JsValue
 
impl From<WheelEvent> for JsValue
sourcefn from(obj: WheelEvent) -> JsValue
 
fn from(obj: WheelEvent) -> JsValue
Converts to this type from the input type.
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