wasm_bindgen::convert

Trait IntoWasmAbi

Source
pub trait IntoWasmAbi: WasmDescribe {
    type Abi: WasmAbi;

    // Required method
    fn into_abi(self) -> Self::Abi;
}
Expand description

A trait for anything that can be converted into a type that can cross the Wasm ABI directly, eg u32 or f64.

This is the opposite operation as FromWasmAbi and Ref[Mut]FromWasmAbi.

§⚠️ Unstable

This is part of the internal convert module, no stability guarantees are provided. Use at your own risk. See its documentation for more details.

Required Associated Types§

Source

type Abi: WasmAbi

The Wasm ABI type that this converts into when crossing the ABI boundary.

Required Methods§

Source

fn into_abi(self) -> Self::Abi

Convert self into Self::Abi so that it can be sent across the wasm ABI boundary.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl IntoWasmAbi for Option<f32>

Source§

type Abi = f64

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for Option<f64>

Source§

type Abi = Option<f64>

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for Option<i32>

Source§

type Abi = f64

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for Option<i64>

Source§

type Abi = Option<i64>

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for Option<i128>

Source§

type Abi = Option<i128>

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for Option<isize>

Source§

type Abi = f64

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for Option<u32>

Source§

type Abi = f64

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for Option<u64>

Source§

type Abi = Option<u64>

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for Option<u128>

Source§

type Abi = Option<u128>

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for Option<usize>

Source§

type Abi = f64

Source§

fn into_abi(self) -> Self::Abi

Source§

impl IntoWasmAbi for bool

Source§

impl IntoWasmAbi for char

Source§

impl IntoWasmAbi for f32

Source§

impl IntoWasmAbi for f64

Source§

impl IntoWasmAbi for i8

Source§

impl IntoWasmAbi for i16

Source§

impl IntoWasmAbi for i32

Source§

impl IntoWasmAbi for i64

Source§

impl IntoWasmAbi for i128

Source§

impl IntoWasmAbi for isize

Source§

impl IntoWasmAbi for u8

Source§

impl IntoWasmAbi for u16

Source§

impl IntoWasmAbi for u32

Source§

impl IntoWasmAbi for u64

Source§

impl IntoWasmAbi for u128

Source§

impl IntoWasmAbi for ()

Source§

impl IntoWasmAbi for usize

Source§

impl IntoWasmAbi for String

Source§

type Abi = <Vec<u8> as IntoWasmAbi>::Abi

Source§

fn into_abi(self) -> Self::Abi

Source§

impl<'a> IntoWasmAbi for &'a str

Source§

type Abi = <&'a [u8] as IntoWasmAbi>::Abi

Source§

fn into_abi(self) -> Self::Abi

Source§

impl<'a> IntoWasmAbi for &'a [f32]

Source§

impl<'a> IntoWasmAbi for &'a [f64]

Source§

impl<'a> IntoWasmAbi for &'a [i8]

Source§

impl<'a> IntoWasmAbi for &'a [i16]

Source§

impl<'a> IntoWasmAbi for &'a [i32]

Source§

impl<'a> IntoWasmAbi for &'a [i64]

Source§

impl<'a> IntoWasmAbi for &'a [isize]

Source§

impl<'a> IntoWasmAbi for &'a [u8]

Source§

impl<'a> IntoWasmAbi for &'a [u16]

Source§

impl<'a> IntoWasmAbi for &'a [u32]

Source§

impl<'a> IntoWasmAbi for &'a [u64]

Source§

impl<'a> IntoWasmAbi for &'a [usize]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<f32>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<f64>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<i8>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<i16>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<i32>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<i64>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<isize>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<u8>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<u16>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<u32>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<u64>]

Source§

impl<'a> IntoWasmAbi for &'a [MaybeUninit<usize>]

Source§

impl<'a> IntoWasmAbi for &'a mut [f32]

Source§

impl<'a> IntoWasmAbi for &'a mut [f64]

Source§

impl<'a> IntoWasmAbi for &'a mut [i8]

Source§

impl<'a> IntoWasmAbi for &'a mut [i16]

Source§

impl<'a> IntoWasmAbi for &'a mut [i32]

Source§

impl<'a> IntoWasmAbi for &'a mut [i64]

Source§

impl<'a> IntoWasmAbi for &'a mut [isize]

Source§

impl<'a> IntoWasmAbi for &'a mut [u8]

Source§

impl<'a> IntoWasmAbi for &'a mut [u16]

Source§

impl<'a> IntoWasmAbi for &'a mut [u32]

Source§

impl<'a> IntoWasmAbi for &'a mut [u64]

Source§

impl<'a> IntoWasmAbi for &'a mut [usize]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<f32>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<f64>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<i8>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<i16>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<i32>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<i64>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<isize>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<u8>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<u16>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<u32>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<u64>]

Source§

impl<'a> IntoWasmAbi for &'a mut [MaybeUninit<usize>]

Source§

impl<A, B, C, D, E, F, G, H, R> IntoWasmAbi for &(dyn Fn(A, B, C, D, E, F, G, H) -> R + '_)

Source§

impl<A, B, C, D, E, F, G, H, R> IntoWasmAbi for &mut (dyn FnMut(A, B, C, D, E, F, G, H) -> R + '_)

Source§

impl<A, B, C, D, E, F, G, R> IntoWasmAbi for &(dyn Fn(A, B, C, D, E, F, G) -> R + '_)

Source§

impl<A, B, C, D, E, F, G, R> IntoWasmAbi for &mut (dyn FnMut(A, B, C, D, E, F, G) -> R + '_)

Source§

impl<A, B, C, D, E, F, R> IntoWasmAbi for &(dyn Fn(A, B, C, D, E, F) -> R + '_)

Source§

impl<A, B, C, D, E, F, R> IntoWasmAbi for &mut (dyn FnMut(A, B, C, D, E, F) -> R + '_)

Source§

impl<A, B, C, D, E, R> IntoWasmAbi for &(dyn Fn(A, B, C, D, E) -> R + '_)

Source§

impl<A, B, C, D, E, R> IntoWasmAbi for &mut (dyn FnMut(A, B, C, D, E) -> R + '_)

Source§

impl<A, B, C, D, R> IntoWasmAbi for &(dyn Fn(A, B, C, D) -> R + '_)

Source§

impl<A, B, C, D, R> IntoWasmAbi for &mut (dyn FnMut(A, B, C, D) -> R + '_)

Source§

impl<A, B, C, R> IntoWasmAbi for &(dyn Fn(A, B, C) -> R + '_)

Source§

impl<A, B, C, R> IntoWasmAbi for &mut (dyn FnMut(A, B, C) -> R + '_)

Source§

impl<A, B, R> IntoWasmAbi for &(dyn Fn(A, B) -> R + '_)

Source§

impl<A, B, R> IntoWasmAbi for &mut (dyn FnMut(A, B) -> R + '_)

Source§

impl<A, R> IntoWasmAbi for &(dyn Fn(&A) -> R + '_)

Source§

impl<A, R> IntoWasmAbi for &(dyn Fn(A) -> R + '_)

Source§

impl<A, R> IntoWasmAbi for &mut (dyn FnMut(&A) -> R + '_)

Source§

impl<A, R> IntoWasmAbi for &mut (dyn FnMut(A) -> R + '_)

Source§

impl<R> IntoWasmAbi for &(dyn Fn() -> R + '_)
where R: ReturnWasmAbi,

Source§

impl<R> IntoWasmAbi for &mut (dyn FnMut() -> R + '_)
where R: ReturnWasmAbi,

Source§

impl<T> IntoWasmAbi for Option<*const T>

Source§

impl<T> IntoWasmAbi for Option<*mut T>

Source§

impl<T> IntoWasmAbi for *const T

Source§

impl<T> IntoWasmAbi for *mut T

Source§

impl<T> IntoWasmAbi for Vec<T>
where Box<[T]>: IntoWasmAbi<Abi = WasmSlice>,

Source§

type Abi = <Box<[T]> as IntoWasmAbi>::Abi

Source§

fn into_abi(self) -> Self::Abi

Source§

impl<T> IntoWasmAbi for NonNull<T>

Source§

impl<T: OptionIntoWasmAbi> IntoWasmAbi for Option<T>

Source§

type Abi = <T as IntoWasmAbi>::Abi

Source§

fn into_abi(self) -> T::Abi

Source§

impl<T: VectorIntoWasmAbi> IntoWasmAbi for Box<[T]>

Source§

type Abi = <T as VectorIntoWasmAbi>::Abi

Source§

fn into_abi(self) -> Self::Abi

Implementors§

Source§

impl IntoWasmAbi for &JsValue

Source§

impl IntoWasmAbi for JsError

Source§

impl IntoWasmAbi for JsValue

Source§

impl<T> IntoWasmAbi for &Closure<T>
where T: WasmClosure + ?Sized,

Source§

impl<T: IntoWasmAbi> IntoWasmAbi for Clamped<T>

Source§

type Abi = <T as IntoWasmAbi>::Abi

impl IntoWasmAbi for Tag

impl IntoWasmAbi for Date

impl IntoWasmAbi for Map

impl IntoWasmAbi for Set

impl<'a> IntoWasmAbi for &'a Collator

impl<'a> IntoWasmAbi for &'a DateTimeFormat

impl<'a> IntoWasmAbi for &'a NumberFormat

impl<'a> IntoWasmAbi for &'a PluralRules

impl<'a> IntoWasmAbi for &'a CompileError

impl<'a> IntoWasmAbi for &'a Exception

impl<'a> IntoWasmAbi for &'a Global

impl<'a> IntoWasmAbi for &'a Instance

impl<'a> IntoWasmAbi for &'a LinkError

impl<'a> IntoWasmAbi for &'a Memory

impl<'a> IntoWasmAbi for &'a Module

impl<'a> IntoWasmAbi for &'a RuntimeError

impl<'a> IntoWasmAbi for &'a Table

impl<'a> IntoWasmAbi for &'a Tag

impl<'a> IntoWasmAbi for &'a Array

impl<'a> IntoWasmAbi for &'a ArrayBuffer

impl<'a> IntoWasmAbi for &'a AsyncIterator

impl<'a> IntoWasmAbi for &'a BigInt

impl<'a> IntoWasmAbi for &'a BigInt64Array

impl<'a> IntoWasmAbi for &'a BigUint64Array

impl<'a> IntoWasmAbi for &'a Boolean

impl<'a> IntoWasmAbi for &'a DataView

impl<'a> IntoWasmAbi for &'a Date

impl<'a> IntoWasmAbi for &'a Error

impl<'a> IntoWasmAbi for &'a EvalError

impl<'a> IntoWasmAbi for &'a Float32Array

impl<'a> IntoWasmAbi for &'a Float64Array

impl<'a> IntoWasmAbi for &'a Function

impl<'a> IntoWasmAbi for &'a Generator

impl<'a> IntoWasmAbi for &'a Int16Array

impl<'a> IntoWasmAbi for &'a Int32Array

impl<'a> IntoWasmAbi for &'a Int8Array

impl<'a> IntoWasmAbi for &'a Iterator

impl<'a> IntoWasmAbi for &'a IteratorNext

impl<'a> IntoWasmAbi for &'a JsString

impl<'a> IntoWasmAbi for &'a Map

impl<'a> IntoWasmAbi for &'a Number

impl<'a> IntoWasmAbi for &'a Object

impl<'a> IntoWasmAbi for &'a Promise

impl<'a> IntoWasmAbi for &'a Proxy

impl<'a> IntoWasmAbi for &'a RangeError

impl<'a> IntoWasmAbi for &'a ReferenceError

impl<'a> IntoWasmAbi for &'a RegExp

impl<'a> IntoWasmAbi for &'a Set

impl<'a> IntoWasmAbi for &'a Symbol

impl<'a> IntoWasmAbi for &'a SyntaxError

impl<'a> IntoWasmAbi for &'a TypeError

impl<'a> IntoWasmAbi for &'a Uint16Array

impl<'a> IntoWasmAbi for &'a Uint32Array

impl<'a> IntoWasmAbi for &'a Uint8Array

impl<'a> IntoWasmAbi for &'a UriError

impl<'a> IntoWasmAbi for &'a WeakMap

impl<'a> IntoWasmAbi for &'a WeakSet

impl IntoWasmAbi for Attr

impl IntoWasmAbi for Blob

impl IntoWasmAbi for File

impl IntoWasmAbi for Gpu

impl IntoWasmAbi for Hid

impl IntoWasmAbi for Lock

impl IntoWasmAbi for Node

impl IntoWasmAbi for Text

impl IntoWasmAbi for U2f

impl IntoWasmAbi for Url

impl IntoWasmAbi for Usb

impl<'a> IntoWasmAbi for &'a AbortController

impl<'a> IntoWasmAbi for &'a AbortSignal

impl<'a> IntoWasmAbi for &'a AesCbcParams

impl<'a> IntoWasmAbi for &'a AesCtrParams

impl<'a> IntoWasmAbi for &'a AesGcmParams

impl<'a> IntoWasmAbi for &'a AesKeyAlgorithm

impl<'a> IntoWasmAbi for &'a AesKeyGenParams

impl<'a> IntoWasmAbi for &'a Algorithm

impl<'a> IntoWasmAbi for &'a AllowedUsbDevice

impl<'a> IntoWasmAbi for &'a AnalyserNode

impl<'a> IntoWasmAbi for &'a AnalyserOptions

impl<'a> IntoWasmAbi for &'a Animation

impl<'a> IntoWasmAbi for &'a AnimationEffect

impl<'a> IntoWasmAbi for &'a AnimationEvent

impl<'a> IntoWasmAbi for &'a Attr

impl<'a> IntoWasmAbi for &'a AudioBuffer

impl<'a> IntoWasmAbi for &'a AudioContext

impl<'a> IntoWasmAbi for &'a AudioData

impl<'a> IntoWasmAbi for &'a AudioDataInit

impl<'a> IntoWasmAbi for &'a AudioDecoder

impl<'a> IntoWasmAbi for &'a AudioDecoderInit

impl<'a> IntoWasmAbi for &'a AudioEncoder

impl<'a> IntoWasmAbi for &'a AudioEncoderInit

impl<'a> IntoWasmAbi for &'a AudioListener

impl<'a> IntoWasmAbi for &'a AudioNode

impl<'a> IntoWasmAbi for &'a AudioNodeOptions

impl<'a> IntoWasmAbi for &'a AudioParam

impl<'a> IntoWasmAbi for &'a AudioParamMap

impl<'a> IntoWasmAbi for &'a AudioSinkInfo

impl<'a> IntoWasmAbi for &'a AudioSinkOptions

impl<'a> IntoWasmAbi for &'a AudioStreamTrack

impl<'a> IntoWasmAbi for &'a AudioTrack

impl<'a> IntoWasmAbi for &'a AudioTrackList

impl<'a> IntoWasmAbi for &'a AudioWorklet

impl<'a> IntoWasmAbi for &'a AudioWorkletNode

impl<'a> IntoWasmAbi for &'a AutocompleteInfo

impl<'a> IntoWasmAbi for &'a BarProp

impl<'a> IntoWasmAbi for &'a BaseAudioContext

impl<'a> IntoWasmAbi for &'a BaseKeyframe

impl<'a> IntoWasmAbi for &'a BasicCardRequest

impl<'a> IntoWasmAbi for &'a BatteryManager

impl<'a> IntoWasmAbi for &'a BiquadFilterNode

impl<'a> IntoWasmAbi for &'a Blob

impl<'a> IntoWasmAbi for &'a BlobEvent

impl<'a> IntoWasmAbi for &'a BlobEventInit

impl<'a> IntoWasmAbi for &'a BlobPropertyBag

impl<'a> IntoWasmAbi for &'a Bluetooth

impl<'a> IntoWasmAbi for &'a BluetoothDevice

impl<'a> IntoWasmAbi for &'a BluetoothUuid

impl<'a> IntoWasmAbi for &'a BoxQuadOptions

impl<'a> IntoWasmAbi for &'a BroadcastChannel

impl<'a> IntoWasmAbi for &'a Cache

impl<'a> IntoWasmAbi for &'a CacheStorage

impl<'a> IntoWasmAbi for &'a CanvasGradient

impl<'a> IntoWasmAbi for &'a CanvasPattern

impl<'a> IntoWasmAbi for &'a CaretPosition

impl<'a> IntoWasmAbi for &'a CdataSection

impl<'a> IntoWasmAbi for &'a CharacterData

impl<'a> IntoWasmAbi for &'a ChromeWorker

impl<'a> IntoWasmAbi for &'a Client

impl<'a> IntoWasmAbi for &'a Clients

impl<'a> IntoWasmAbi for &'a Clipboard

impl<'a> IntoWasmAbi for &'a ClipboardEvent

impl<'a> IntoWasmAbi for &'a ClipboardItem

impl<'a> IntoWasmAbi for &'a CloseEvent

impl<'a> IntoWasmAbi for &'a CloseEventInit

impl<'a> IntoWasmAbi for &'a Comment

impl<'a> IntoWasmAbi for &'a CompositionEvent

impl<'a> IntoWasmAbi for &'a ConnStatusDict

impl<'a> IntoWasmAbi for &'a ConsoleCounter

impl<'a> IntoWasmAbi for &'a ConsoleEvent

impl<'a> IntoWasmAbi for &'a ConsoleInstance

impl<'a> IntoWasmAbi for &'a ConvolverNode

impl<'a> IntoWasmAbi for &'a ConvolverOptions

impl<'a> IntoWasmAbi for &'a Coordinates

impl<'a> IntoWasmAbi for &'a Credential

impl<'a> IntoWasmAbi for &'a Crypto

impl<'a> IntoWasmAbi for &'a CryptoKey

impl<'a> IntoWasmAbi for &'a CryptoKeyPair

impl<'a> IntoWasmAbi for &'a CssAnimation

impl<'a> IntoWasmAbi for &'a CssConditionRule

impl<'a> IntoWasmAbi for &'a CssFontFaceRule

impl<'a> IntoWasmAbi for &'a CssGroupingRule

impl<'a> IntoWasmAbi for &'a CssImportRule

impl<'a> IntoWasmAbi for &'a CssKeyframeRule

impl<'a> IntoWasmAbi for &'a CssKeyframesRule

impl<'a> IntoWasmAbi for &'a CssMediaRule

impl<'a> IntoWasmAbi for &'a CssNamespaceRule

impl<'a> IntoWasmAbi for &'a CssPageRule

impl<'a> IntoWasmAbi for &'a CssPseudoElement

impl<'a> IntoWasmAbi for &'a CssRule

impl<'a> IntoWasmAbi for &'a CssRuleList

impl<'a> IntoWasmAbi for &'a CssStyleRule

impl<'a> IntoWasmAbi for &'a CssStyleSheet

impl<'a> IntoWasmAbi for &'a CssSupportsRule

impl<'a> IntoWasmAbi for &'a CssTransition

impl<'a> IntoWasmAbi for &'a CustomEvent

impl<'a> IntoWasmAbi for &'a CustomEventInit

impl<'a> IntoWasmAbi for &'a DataTransfer

impl<'a> IntoWasmAbi for &'a DataTransferItem

impl<'a> IntoWasmAbi for &'a DateTimeValue

impl<'a> IntoWasmAbi for &'a DelayNode

impl<'a> IntoWasmAbi for &'a DelayOptions

impl<'a> IntoWasmAbi for &'a DeviceLightEvent

impl<'a> IntoWasmAbi for &'a Directory

impl<'a> IntoWasmAbi for &'a DnsCacheDict

impl<'a> IntoWasmAbi for &'a DnsCacheEntry

impl<'a> IntoWasmAbi for &'a DnsLookupDict

impl<'a> IntoWasmAbi for &'a Document

impl<'a> IntoWasmAbi for &'a DocumentFragment

impl<'a> IntoWasmAbi for &'a DocumentTimeline

impl<'a> IntoWasmAbi for &'a DocumentType

impl<'a> IntoWasmAbi for &'a DomError

impl<'a> IntoWasmAbi for &'a DomException

impl<'a> IntoWasmAbi for &'a DomMatrix

impl<'a> IntoWasmAbi for &'a DomMatrix2dInit

impl<'a> IntoWasmAbi for &'a DomMatrixInit

impl<'a> IntoWasmAbi for &'a DomParser

impl<'a> IntoWasmAbi for &'a DomPoint

impl<'a> IntoWasmAbi for &'a DomPointInit

impl<'a> IntoWasmAbi for &'a DomPointReadOnly

impl<'a> IntoWasmAbi for &'a DomQuad

impl<'a> IntoWasmAbi for &'a DomQuadInit

impl<'a> IntoWasmAbi for &'a DomQuadJson

impl<'a> IntoWasmAbi for &'a DomRect

impl<'a> IntoWasmAbi for &'a DomRectInit

impl<'a> IntoWasmAbi for &'a DomRectList

impl<'a> IntoWasmAbi for &'a DomRectReadOnly

impl<'a> IntoWasmAbi for &'a DomRequest

impl<'a> IntoWasmAbi for &'a DomStringList

impl<'a> IntoWasmAbi for &'a DomStringMap

impl<'a> IntoWasmAbi for &'a DomTokenList

impl<'a> IntoWasmAbi for &'a DoubleRange

impl<'a> IntoWasmAbi for &'a DragEvent

impl<'a> IntoWasmAbi for &'a DragEventInit

impl<'a> IntoWasmAbi for &'a EcKeyAlgorithm

impl<'a> IntoWasmAbi for &'a EcKeyGenParams

impl<'a> IntoWasmAbi for &'a EcdsaParams

impl<'a> IntoWasmAbi for &'a EffectTiming

impl<'a> IntoWasmAbi for &'a Element

impl<'a> IntoWasmAbi for &'a ErrorCallback

impl<'a> IntoWasmAbi for &'a ErrorEvent

impl<'a> IntoWasmAbi for &'a ErrorEventInit

impl<'a> IntoWasmAbi for &'a Event

impl<'a> IntoWasmAbi for &'a EventInit

impl<'a> IntoWasmAbi for &'a EventListener

impl<'a> IntoWasmAbi for &'a EventSource

impl<'a> IntoWasmAbi for &'a EventSourceInit

impl<'a> IntoWasmAbi for &'a EventTarget

impl<'a> IntoWasmAbi for &'a Exception

impl<'a> IntoWasmAbi for &'a ExtBlendMinmax

impl<'a> IntoWasmAbi for &'a ExtFragDepth

impl<'a> IntoWasmAbi for &'a ExtSRgb

impl<'a> IntoWasmAbi for &'a ExtTextureNorm16

impl<'a> IntoWasmAbi for &'a ExtendableEvent

impl<'a> IntoWasmAbi for &'a External

impl<'a> IntoWasmAbi for &'a FetchEvent

impl<'a> IntoWasmAbi for &'a FetchEventInit

impl<'a> IntoWasmAbi for &'a FetchObserver

impl<'a> IntoWasmAbi for &'a File

impl<'a> IntoWasmAbi for &'a FileCallback

impl<'a> IntoWasmAbi for &'a FileList

impl<'a> IntoWasmAbi for &'a FilePropertyBag

impl<'a> IntoWasmAbi for &'a FileReader

impl<'a> IntoWasmAbi for &'a FileReaderSync

impl<'a> IntoWasmAbi for &'a FileSystem

impl<'a> IntoWasmAbi for &'a FileSystemEntry

impl<'a> IntoWasmAbi for &'a FileSystemFlags

impl<'a> IntoWasmAbi for &'a FileSystemHandle

impl<'a> IntoWasmAbi for &'a FocusEvent

impl<'a> IntoWasmAbi for &'a FocusEventInit

impl<'a> IntoWasmAbi for &'a FocusOptions

impl<'a> IntoWasmAbi for &'a FontData

impl<'a> IntoWasmAbi for &'a FontFace

impl<'a> IntoWasmAbi for &'a FontFaceSet

impl<'a> IntoWasmAbi for &'a FormData

impl<'a> IntoWasmAbi for &'a FuzzingFunctions

impl<'a> IntoWasmAbi for &'a GainNode

impl<'a> IntoWasmAbi for &'a GainOptions

impl<'a> IntoWasmAbi for &'a Gamepad

impl<'a> IntoWasmAbi for &'a GamepadButton

impl<'a> IntoWasmAbi for &'a GamepadEvent

impl<'a> IntoWasmAbi for &'a GamepadEventInit

impl<'a> IntoWasmAbi for &'a GamepadPose

impl<'a> IntoWasmAbi for &'a GamepadTouch

impl<'a> IntoWasmAbi for &'a Geolocation

impl<'a> IntoWasmAbi for &'a Gpu

impl<'a> IntoWasmAbi for &'a GpuAdapter

impl<'a> IntoWasmAbi for &'a GpuAdapterInfo

impl<'a> IntoWasmAbi for &'a GpuBindGroup

impl<'a> IntoWasmAbi for &'a GpuBlendState

impl<'a> IntoWasmAbi for &'a GpuBuffer

impl<'a> IntoWasmAbi for &'a GpuBufferBinding

impl<'a> IntoWasmAbi for &'a GpuCanvasContext

impl<'a> IntoWasmAbi for &'a GpuColorDict

impl<'a> IntoWasmAbi for &'a GpuCommandBuffer

impl<'a> IntoWasmAbi for &'a GpuDevice

impl<'a> IntoWasmAbi for &'a GpuError

impl<'a> IntoWasmAbi for &'a GpuExtent3dDict

impl<'a> IntoWasmAbi for &'a GpuFragmentState

impl<'a> IntoWasmAbi for &'a GpuInternalError

impl<'a> IntoWasmAbi for &'a GpuOrigin2dDict

impl<'a> IntoWasmAbi for &'a GpuOrigin3dDict

impl<'a> IntoWasmAbi for &'a GpuPipelineError

impl<'a> IntoWasmAbi for &'a GpuQuerySet

impl<'a> IntoWasmAbi for &'a GpuQueue

impl<'a> IntoWasmAbi for &'a GpuRenderBundle

impl<'a> IntoWasmAbi for &'a GpuSampler

impl<'a> IntoWasmAbi for &'a GpuShaderModule

impl<'a> IntoWasmAbi for &'a GpuTexture

impl<'a> IntoWasmAbi for &'a GpuTextureView

impl<'a> IntoWasmAbi for &'a GpuVertexState

impl<'a> IntoWasmAbi for &'a HalfOpenInfoDict

impl<'a> IntoWasmAbi for &'a HashChangeEvent

impl<'a> IntoWasmAbi for &'a Headers

impl<'a> IntoWasmAbi for &'a Hid

impl<'a> IntoWasmAbi for &'a HidDevice

impl<'a> IntoWasmAbi for &'a HidDeviceFilter

impl<'a> IntoWasmAbi for &'a HidReportInfo

impl<'a> IntoWasmAbi for &'a HidReportItem

impl<'a> IntoWasmAbi for &'a History

impl<'a> IntoWasmAbi for &'a HitRegionOptions

impl<'a> IntoWasmAbi for &'a HkdfParams

impl<'a> IntoWasmAbi for &'a HmacImportParams

impl<'a> IntoWasmAbi for &'a HmacKeyAlgorithm

impl<'a> IntoWasmAbi for &'a HmacKeyGenParams

impl<'a> IntoWasmAbi for &'a HtmlAreaElement

impl<'a> IntoWasmAbi for &'a HtmlAudioElement

impl<'a> IntoWasmAbi for &'a HtmlBaseElement

impl<'a> IntoWasmAbi for &'a HtmlBodyElement

impl<'a> IntoWasmAbi for &'a HtmlBrElement

impl<'a> IntoWasmAbi for &'a HtmlCollection

impl<'a> IntoWasmAbi for &'a HtmlDListElement

impl<'a> IntoWasmAbi for &'a HtmlDataElement

impl<'a> IntoWasmAbi for &'a HtmlDivElement

impl<'a> IntoWasmAbi for &'a HtmlDocument

impl<'a> IntoWasmAbi for &'a HtmlElement

impl<'a> IntoWasmAbi for &'a HtmlEmbedElement

impl<'a> IntoWasmAbi for &'a HtmlFontElement

impl<'a> IntoWasmAbi for &'a HtmlFormElement

impl<'a> IntoWasmAbi for &'a HtmlFrameElement

impl<'a> IntoWasmAbi for &'a HtmlHeadElement

impl<'a> IntoWasmAbi for &'a HtmlHrElement

impl<'a> IntoWasmAbi for &'a HtmlHtmlElement

impl<'a> IntoWasmAbi for &'a HtmlImageElement

impl<'a> IntoWasmAbi for &'a HtmlInputElement

impl<'a> IntoWasmAbi for &'a HtmlLabelElement

impl<'a> IntoWasmAbi for &'a HtmlLiElement

impl<'a> IntoWasmAbi for &'a HtmlLinkElement

impl<'a> IntoWasmAbi for &'a HtmlMapElement

impl<'a> IntoWasmAbi for &'a HtmlMediaElement

impl<'a> IntoWasmAbi for &'a HtmlMenuElement

impl<'a> IntoWasmAbi for &'a HtmlMetaElement

impl<'a> IntoWasmAbi for &'a HtmlMeterElement

impl<'a> IntoWasmAbi for &'a HtmlModElement

impl<'a> IntoWasmAbi for &'a HtmlOListElement

impl<'a> IntoWasmAbi for &'a HtmlParamElement

impl<'a> IntoWasmAbi for &'a HtmlPreElement

impl<'a> IntoWasmAbi for &'a HtmlQuoteElement

impl<'a> IntoWasmAbi for &'a HtmlSlotElement

impl<'a> IntoWasmAbi for &'a HtmlSpanElement

impl<'a> IntoWasmAbi for &'a HtmlStyleElement

impl<'a> IntoWasmAbi for &'a HtmlTableElement

impl<'a> IntoWasmAbi for &'a HtmlTimeElement

impl<'a> IntoWasmAbi for &'a HtmlTitleElement

impl<'a> IntoWasmAbi for &'a HtmlTrackElement

impl<'a> IntoWasmAbi for &'a HtmlUListElement

impl<'a> IntoWasmAbi for &'a HtmlVideoElement

impl<'a> IntoWasmAbi for &'a HttpConnDict

impl<'a> IntoWasmAbi for &'a HttpConnInfo

impl<'a> IntoWasmAbi for &'a IdbCursor

impl<'a> IntoWasmAbi for &'a IdbDatabase

impl<'a> IntoWasmAbi for &'a IdbFactory

impl<'a> IntoWasmAbi for &'a IdbFileHandle

impl<'a> IntoWasmAbi for &'a IdbFileRequest

impl<'a> IntoWasmAbi for &'a IdbIndex

impl<'a> IntoWasmAbi for &'a IdbKeyRange

impl<'a> IntoWasmAbi for &'a IdbMutableFile

impl<'a> IntoWasmAbi for &'a IdbObjectStore

impl<'a> IntoWasmAbi for &'a IdbOpenDbOptions

impl<'a> IntoWasmAbi for &'a IdbOpenDbRequest

impl<'a> IntoWasmAbi for &'a IdbRequest

impl<'a> IntoWasmAbi for &'a IdbTransaction

impl<'a> IntoWasmAbi for &'a IdleDeadline

impl<'a> IntoWasmAbi for &'a IirFilterNode

impl<'a> IntoWasmAbi for &'a IirFilterOptions

impl<'a> IntoWasmAbi for &'a ImageBitmap

impl<'a> IntoWasmAbi for &'a ImageCapture

impl<'a> IntoWasmAbi for &'a ImageData

impl<'a> IntoWasmAbi for &'a ImageDecoder

impl<'a> IntoWasmAbi for &'a ImageDecoderInit

impl<'a> IntoWasmAbi for &'a ImageTrack

impl<'a> IntoWasmAbi for &'a ImageTrackList

impl<'a> IntoWasmAbi for &'a InputDeviceInfo

impl<'a> IntoWasmAbi for &'a InputEvent

impl<'a> IntoWasmAbi for &'a InputEventInit

impl<'a> IntoWasmAbi for &'a IntlUtils

impl<'a> IntoWasmAbi for &'a JsonWebKey

impl<'a> IntoWasmAbi for &'a KeyAlgorithm

impl<'a> IntoWasmAbi for &'a KeyEvent

impl<'a> IntoWasmAbi for &'a KeyIdsInitData

impl<'a> IntoWasmAbi for &'a KeyboardEvent

impl<'a> IntoWasmAbi for &'a KeyframeEffect

impl<'a> IntoWasmAbi for &'a L10nElement

impl<'a> IntoWasmAbi for &'a L10nValue

impl<'a> IntoWasmAbi for &'a ListBoxObject

impl<'a> IntoWasmAbi for &'a LocalMediaStream

impl<'a> IntoWasmAbi for &'a LocaleInfo

impl<'a> IntoWasmAbi for &'a Location

impl<'a> IntoWasmAbi for &'a Lock

impl<'a> IntoWasmAbi for &'a LockInfo

impl<'a> IntoWasmAbi for &'a LockManager

impl<'a> IntoWasmAbi for &'a LockOptions

impl<'a> IntoWasmAbi for &'a MathMlElement

impl<'a> IntoWasmAbi for &'a MediaDeviceInfo

impl<'a> IntoWasmAbi for &'a MediaDevices

impl<'a> IntoWasmAbi for &'a MediaError

impl<'a> IntoWasmAbi for &'a MediaImage

impl<'a> IntoWasmAbi for &'a MediaKeyError

impl<'a> IntoWasmAbi for &'a MediaKeySession

impl<'a> IntoWasmAbi for &'a MediaKeys

impl<'a> IntoWasmAbi for &'a MediaKeysPolicy

impl<'a> IntoWasmAbi for &'a MediaList

impl<'a> IntoWasmAbi for &'a MediaMetadata

impl<'a> IntoWasmAbi for &'a MediaQueryList

impl<'a> IntoWasmAbi for &'a MediaRecorder

impl<'a> IntoWasmAbi for &'a MediaSession

impl<'a> IntoWasmAbi for &'a MediaSource

impl<'a> IntoWasmAbi for &'a MediaStream

impl<'a> IntoWasmAbi for &'a MediaStreamError

impl<'a> IntoWasmAbi for &'a MediaStreamEvent

impl<'a> IntoWasmAbi for &'a MediaStreamTrack

impl<'a> IntoWasmAbi for &'a MessageChannel

impl<'a> IntoWasmAbi for &'a MessageEvent

impl<'a> IntoWasmAbi for &'a MessageEventInit

impl<'a> IntoWasmAbi for &'a MessagePort

impl<'a> IntoWasmAbi for &'a MidiAccess

impl<'a> IntoWasmAbi for &'a MidiInput

impl<'a> IntoWasmAbi for &'a MidiInputMap

impl<'a> IntoWasmAbi for &'a MidiMessageEvent

impl<'a> IntoWasmAbi for &'a MidiOptions

impl<'a> IntoWasmAbi for &'a MidiOutput

impl<'a> IntoWasmAbi for &'a MidiOutputMap

impl<'a> IntoWasmAbi for &'a MidiPort

impl<'a> IntoWasmAbi for &'a MimeType

impl<'a> IntoWasmAbi for &'a MimeTypeArray

impl<'a> IntoWasmAbi for &'a MouseEvent

impl<'a> IntoWasmAbi for &'a MouseEventInit

impl<'a> IntoWasmAbi for &'a MouseScrollEvent

impl<'a> IntoWasmAbi for &'a MozDebug

impl<'a> IntoWasmAbi for &'a MutationEvent

impl<'a> IntoWasmAbi for &'a MutationObserver

impl<'a> IntoWasmAbi for &'a MutationRecord

impl<'a> IntoWasmAbi for &'a NamedNodeMap

impl<'a> IntoWasmAbi for &'a Navigator

impl<'a> IntoWasmAbi for &'a NavigatorUaData

impl<'a> IntoWasmAbi for &'a Node

impl<'a> IntoWasmAbi for &'a NodeFilter

impl<'a> IntoWasmAbi for &'a NodeIterator

impl<'a> IntoWasmAbi for &'a NodeList

impl<'a> IntoWasmAbi for &'a Notification

impl<'a> IntoWasmAbi for &'a ObserverCallback

impl<'a> IntoWasmAbi for &'a OesTextureFloat

impl<'a> IntoWasmAbi for &'a OffscreenCanvas

impl<'a> IntoWasmAbi for &'a OscillatorNode

impl<'a> IntoWasmAbi for &'a OvrMultiview2

impl<'a> IntoWasmAbi for &'a PaintRequest

impl<'a> IntoWasmAbi for &'a PaintRequestList

impl<'a> IntoWasmAbi for &'a PannerNode

impl<'a> IntoWasmAbi for &'a PannerOptions

impl<'a> IntoWasmAbi for &'a Path2d

impl<'a> IntoWasmAbi for &'a PaymentAddress

impl<'a> IntoWasmAbi for &'a PaymentResponse

impl<'a> IntoWasmAbi for &'a Pbkdf2Params

impl<'a> IntoWasmAbi for &'a Performance

impl<'a> IntoWasmAbi for &'a PerformanceEntry

impl<'a> IntoWasmAbi for &'a PerformanceMark

impl<'a> IntoWasmAbi for &'a PeriodicWave

impl<'a> IntoWasmAbi for &'a PermissionStatus

impl<'a> IntoWasmAbi for &'a Permissions

impl<'a> IntoWasmAbi for &'a PlaneLayout

impl<'a> IntoWasmAbi for &'a Plugin

impl<'a> IntoWasmAbi for &'a PluginArray

impl<'a> IntoWasmAbi for &'a PointerEvent

impl<'a> IntoWasmAbi for &'a PointerEventInit

impl<'a> IntoWasmAbi for &'a PopStateEvent

impl<'a> IntoWasmAbi for &'a Position

impl<'a> IntoWasmAbi for &'a PositionError

impl<'a> IntoWasmAbi for &'a PositionOptions

impl<'a> IntoWasmAbi for &'a Presentation

impl<'a> IntoWasmAbi for &'a ProgressEvent

impl<'a> IntoWasmAbi for &'a PushEvent

impl<'a> IntoWasmAbi for &'a PushEventInit

impl<'a> IntoWasmAbi for &'a PushManager

impl<'a> IntoWasmAbi for &'a PushMessageData

impl<'a> IntoWasmAbi for &'a PushSubscription

impl<'a> IntoWasmAbi for &'a QueryOptions

impl<'a> IntoWasmAbi for &'a QueuingStrategy

impl<'a> IntoWasmAbi for &'a RadioNodeList

impl<'a> IntoWasmAbi for &'a Range

impl<'a> IntoWasmAbi for &'a RcwnPerfStats

impl<'a> IntoWasmAbi for &'a RcwnStatus

impl<'a> IntoWasmAbi for &'a ReadableStream

impl<'a> IntoWasmAbi for &'a RegisterRequest

impl<'a> IntoWasmAbi for &'a RegisterResponse

impl<'a> IntoWasmAbi for &'a RegisteredKey

impl<'a> IntoWasmAbi for &'a Request

impl<'a> IntoWasmAbi for &'a RequestInit

impl<'a> IntoWasmAbi for &'a ResizeObserver

impl<'a> IntoWasmAbi for &'a Response

impl<'a> IntoWasmAbi for &'a ResponseInit

impl<'a> IntoWasmAbi for &'a RsaOaepParams

impl<'a> IntoWasmAbi for &'a RsaPssParams

impl<'a> IntoWasmAbi for &'a RtcAnswerOptions

impl<'a> IntoWasmAbi for &'a RtcCertificate

impl<'a> IntoWasmAbi for &'a RtcCodecStats

impl<'a> IntoWasmAbi for &'a RtcConfiguration

impl<'a> IntoWasmAbi for &'a RtcDataChannel

impl<'a> IntoWasmAbi for &'a RtcFecParameters

impl<'a> IntoWasmAbi for &'a RtcIceCandidate

impl<'a> IntoWasmAbi for &'a RtcIceServer

impl<'a> IntoWasmAbi for &'a RtcOfferOptions

impl<'a> IntoWasmAbi for &'a RtcRtpParameters

impl<'a> IntoWasmAbi for &'a RtcRtpReceiver

impl<'a> IntoWasmAbi for &'a RtcRtpSender

impl<'a> IntoWasmAbi for &'a RtcRtxParameters

impl<'a> IntoWasmAbi for &'a RtcStats

impl<'a> IntoWasmAbi for &'a RtcStatsReport

impl<'a> IntoWasmAbi for &'a RtcTrackEvent

impl<'a> IntoWasmAbi for &'a RtcdtmfSender

impl<'a> IntoWasmAbi for &'a SFrameTransform

impl<'a> IntoWasmAbi for &'a Scheduler

impl<'a> IntoWasmAbi for &'a Scheduling

impl<'a> IntoWasmAbi for &'a Screen

impl<'a> IntoWasmAbi for &'a ScreenLuminance

impl<'a> IntoWasmAbi for &'a ScrollAreaEvent

impl<'a> IntoWasmAbi for &'a ScrollBoxObject

impl<'a> IntoWasmAbi for &'a ScrollOptions

impl<'a> IntoWasmAbi for &'a ScrollToOptions

impl<'a> IntoWasmAbi for &'a Selection

impl<'a> IntoWasmAbi for &'a Serial

impl<'a> IntoWasmAbi for &'a SerialOptions

impl<'a> IntoWasmAbi for &'a SerialPort

impl<'a> IntoWasmAbi for &'a SerialPortFilter

impl<'a> IntoWasmAbi for &'a SerialPortInfo

impl<'a> IntoWasmAbi for &'a ServiceWorker

impl<'a> IntoWasmAbi for &'a ShadowRoot

impl<'a> IntoWasmAbi for &'a ShadowRootInit

impl<'a> IntoWasmAbi for &'a ShareData

impl<'a> IntoWasmAbi for &'a SharedWorker

impl<'a> IntoWasmAbi for &'a SignResponse

impl<'a> IntoWasmAbi for &'a SocketElement

impl<'a> IntoWasmAbi for &'a SocketOptions

impl<'a> IntoWasmAbi for &'a SocketsDict

impl<'a> IntoWasmAbi for &'a SourceBuffer

impl<'a> IntoWasmAbi for &'a SourceBufferList

impl<'a> IntoWasmAbi for &'a SpeechGrammar

impl<'a> IntoWasmAbi for &'a SpeechSynthesis

impl<'a> IntoWasmAbi for &'a StereoPannerNode

impl<'a> IntoWasmAbi for &'a Storage

impl<'a> IntoWasmAbi for &'a StorageEstimate

impl<'a> IntoWasmAbi for &'a StorageEvent

impl<'a> IntoWasmAbi for &'a StorageEventInit

impl<'a> IntoWasmAbi for &'a StorageManager

impl<'a> IntoWasmAbi for &'a StyleSheet

impl<'a> IntoWasmAbi for &'a StyleSheetList

impl<'a> IntoWasmAbi for &'a SubmitEvent

impl<'a> IntoWasmAbi for &'a SubmitEventInit

impl<'a> IntoWasmAbi for &'a SubtleCrypto

impl<'a> IntoWasmAbi for &'a SvgAngle

impl<'a> IntoWasmAbi for &'a SvgAnimatedAngle

impl<'a> IntoWasmAbi for &'a SvgAnimatedRect

impl<'a> IntoWasmAbi for &'a SvgCircleElement

impl<'a> IntoWasmAbi for &'a SvgDefsElement

impl<'a> IntoWasmAbi for &'a SvgDescElement

impl<'a> IntoWasmAbi for &'a SvgElement

impl<'a> IntoWasmAbi for &'a SvgFilterElement

impl<'a> IntoWasmAbi for &'a SvgImageElement

impl<'a> IntoWasmAbi for &'a SvgLength

impl<'a> IntoWasmAbi for &'a SvgLengthList

impl<'a> IntoWasmAbi for &'a SvgLineElement

impl<'a> IntoWasmAbi for &'a SvgMarkerElement

impl<'a> IntoWasmAbi for &'a SvgMaskElement

impl<'a> IntoWasmAbi for &'a SvgMatrix

impl<'a> IntoWasmAbi for &'a SvgNumber

impl<'a> IntoWasmAbi for &'a SvgNumberList

impl<'a> IntoWasmAbi for &'a SvgPathElement

impl<'a> IntoWasmAbi for &'a SvgPathSeg

impl<'a> IntoWasmAbi for &'a SvgPathSegArcAbs

impl<'a> IntoWasmAbi for &'a SvgPathSegArcRel

impl<'a> IntoWasmAbi for &'a SvgPathSegList

impl<'a> IntoWasmAbi for &'a SvgPoint

impl<'a> IntoWasmAbi for &'a SvgPointList

impl<'a> IntoWasmAbi for &'a SvgRect

impl<'a> IntoWasmAbi for &'a SvgRectElement

impl<'a> IntoWasmAbi for &'a SvgScriptElement

impl<'a> IntoWasmAbi for &'a SvgSetElement

impl<'a> IntoWasmAbi for &'a SvgStopElement

impl<'a> IntoWasmAbi for &'a SvgStringList

impl<'a> IntoWasmAbi for &'a SvgStyleElement

impl<'a> IntoWasmAbi for &'a SvgSwitchElement

impl<'a> IntoWasmAbi for &'a SvgSymbolElement

impl<'a> IntoWasmAbi for &'a SvgTextElement

impl<'a> IntoWasmAbi for &'a SvgTitleElement

impl<'a> IntoWasmAbi for &'a SvgTransform

impl<'a> IntoWasmAbi for &'a SvgTransformList

impl<'a> IntoWasmAbi for &'a SvgUnitTypes

impl<'a> IntoWasmAbi for &'a SvgUseElement

impl<'a> IntoWasmAbi for &'a SvgViewElement

impl<'a> IntoWasmAbi for &'a SvgZoomAndPan

impl<'a> IntoWasmAbi for &'a SvgaElement

impl<'a> IntoWasmAbi for &'a SvgfeTileElement

impl<'a> IntoWasmAbi for &'a SvggElement

impl<'a> IntoWasmAbi for &'a SvgmPathElement

impl<'a> IntoWasmAbi for &'a SvgsvgElement

impl<'a> IntoWasmAbi for &'a SvgtSpanElement

impl<'a> IntoWasmAbi for &'a TaskController

impl<'a> IntoWasmAbi for &'a TaskSignal

impl<'a> IntoWasmAbi for &'a TcpServerSocket

impl<'a> IntoWasmAbi for &'a TcpSocket

impl<'a> IntoWasmAbi for &'a TcpSocketEvent

impl<'a> IntoWasmAbi for &'a Text

impl<'a> IntoWasmAbi for &'a TextDecoder

impl<'a> IntoWasmAbi for &'a TextEncoder

impl<'a> IntoWasmAbi for &'a TextMetrics

impl<'a> IntoWasmAbi for &'a TextTrack

impl<'a> IntoWasmAbi for &'a TextTrackCue

impl<'a> IntoWasmAbi for &'a TextTrackCueList

impl<'a> IntoWasmAbi for &'a TextTrackList

impl<'a> IntoWasmAbi for &'a TimeEvent

impl<'a> IntoWasmAbi for &'a TimeRanges

impl<'a> IntoWasmAbi for &'a ToggleEvent

impl<'a> IntoWasmAbi for &'a ToggleEventInit

impl<'a> IntoWasmAbi for &'a TokenBinding

impl<'a> IntoWasmAbi for &'a Touch

impl<'a> IntoWasmAbi for &'a TouchEvent

impl<'a> IntoWasmAbi for &'a TouchEventInit

impl<'a> IntoWasmAbi for &'a TouchInit

impl<'a> IntoWasmAbi for &'a TouchList

impl<'a> IntoWasmAbi for &'a TrackEvent

impl<'a> IntoWasmAbi for &'a TrackEventInit

impl<'a> IntoWasmAbi for &'a TransformStream

impl<'a> IntoWasmAbi for &'a Transformer

impl<'a> IntoWasmAbi for &'a TransitionEvent

impl<'a> IntoWasmAbi for &'a TreeBoxObject

impl<'a> IntoWasmAbi for &'a TreeCellInfo

impl<'a> IntoWasmAbi for &'a TreeView

impl<'a> IntoWasmAbi for &'a TreeWalker

impl<'a> IntoWasmAbi for &'a U2f

impl<'a> IntoWasmAbi for &'a U2fClientData

impl<'a> IntoWasmAbi for &'a ULongRange

impl<'a> IntoWasmAbi for &'a UaDataValues

impl<'a> IntoWasmAbi for &'a UaLowEntropyJson

impl<'a> IntoWasmAbi for &'a UdpOptions

impl<'a> IntoWasmAbi for &'a UiEvent

impl<'a> IntoWasmAbi for &'a UiEventInit

impl<'a> IntoWasmAbi for &'a UnderlyingSink

impl<'a> IntoWasmAbi for &'a UnderlyingSource

impl<'a> IntoWasmAbi for &'a Url

impl<'a> IntoWasmAbi for &'a UrlSearchParams

impl<'a> IntoWasmAbi for &'a Usb

impl<'a> IntoWasmAbi for &'a UsbConfiguration

impl<'a> IntoWasmAbi for &'a UsbDevice

impl<'a> IntoWasmAbi for &'a UsbDeviceFilter

impl<'a> IntoWasmAbi for &'a UsbEndpoint

impl<'a> IntoWasmAbi for &'a UsbInterface

impl<'a> IntoWasmAbi for &'a UserActivation

impl<'a> IntoWasmAbi for &'a ValidityState

impl<'a> IntoWasmAbi for &'a ValueEvent

impl<'a> IntoWasmAbi for &'a ValueEventInit

impl<'a> IntoWasmAbi for &'a VideoColorSpace

impl<'a> IntoWasmAbi for &'a VideoDecoder

impl<'a> IntoWasmAbi for &'a VideoDecoderInit

impl<'a> IntoWasmAbi for &'a VideoEncoder

impl<'a> IntoWasmAbi for &'a VideoEncoderInit

impl<'a> IntoWasmAbi for &'a VideoFrame

impl<'a> IntoWasmAbi for &'a VideoFrameInit

impl<'a> IntoWasmAbi for &'a VideoStreamTrack

impl<'a> IntoWasmAbi for &'a VideoTrack

impl<'a> IntoWasmAbi for &'a VideoTrackList

impl<'a> IntoWasmAbi for &'a ViewTransition

impl<'a> IntoWasmAbi for &'a VisualViewport

impl<'a> IntoWasmAbi for &'a VoidCallback

impl<'a> IntoWasmAbi for &'a VrDisplay

impl<'a> IntoWasmAbi for &'a VrEyeParameters

impl<'a> IntoWasmAbi for &'a VrFieldOfView

impl<'a> IntoWasmAbi for &'a VrFrameData

impl<'a> IntoWasmAbi for &'a VrLayer

impl<'a> IntoWasmAbi for &'a VrMockController

impl<'a> IntoWasmAbi for &'a VrMockDisplay

impl<'a> IntoWasmAbi for &'a VrPose

impl<'a> IntoWasmAbi for &'a VrServiceTest

impl<'a> IntoWasmAbi for &'a VttCue

impl<'a> IntoWasmAbi for &'a VttRegion

impl<'a> IntoWasmAbi for &'a WakeLock

impl<'a> IntoWasmAbi for &'a WakeLockSentinel

impl<'a> IntoWasmAbi for &'a WaveShaperNode

impl<'a> IntoWasmAbi for &'a WebGlActiveInfo

impl<'a> IntoWasmAbi for &'a WebGlBuffer

impl<'a> IntoWasmAbi for &'a WebGlFramebuffer

impl<'a> IntoWasmAbi for &'a WebGlProgram

impl<'a> IntoWasmAbi for &'a WebGlQuery

impl<'a> IntoWasmAbi for &'a WebGlSampler

impl<'a> IntoWasmAbi for &'a WebGlShader

impl<'a> IntoWasmAbi for &'a WebGlSync

impl<'a> IntoWasmAbi for &'a WebGlTexture

impl<'a> IntoWasmAbi for &'a WebKitCssMatrix

impl<'a> IntoWasmAbi for &'a WebSocket

impl<'a> IntoWasmAbi for &'a WebSocketDict

impl<'a> IntoWasmAbi for &'a WebSocketElement

impl<'a> IntoWasmAbi for &'a WebTransport

impl<'a> IntoWasmAbi for &'a WebTransportHash

impl<'a> IntoWasmAbi for &'a WebglDrawBuffers

impl<'a> IntoWasmAbi for &'a WebglLoseContext

impl<'a> IntoWasmAbi for &'a WebglMultiDraw

impl<'a> IntoWasmAbi for &'a WheelEvent

impl<'a> IntoWasmAbi for &'a WheelEventInit

impl<'a> IntoWasmAbi for &'a Window

impl<'a> IntoWasmAbi for &'a WindowClient

impl<'a> IntoWasmAbi for &'a Worker

impl<'a> IntoWasmAbi for &'a WorkerLocation

impl<'a> IntoWasmAbi for &'a WorkerNavigator

impl<'a> IntoWasmAbi for &'a WorkerOptions

impl<'a> IntoWasmAbi for &'a Worklet

impl<'a> IntoWasmAbi for &'a WorkletOptions

impl<'a> IntoWasmAbi for &'a WritableStream

impl<'a> IntoWasmAbi for &'a WriteParams

impl<'a> IntoWasmAbi for &'a XPathExpression

impl<'a> IntoWasmAbi for &'a XPathNsResolver

impl<'a> IntoWasmAbi for &'a XPathResult

impl<'a> IntoWasmAbi for &'a XmlDocument

impl<'a> IntoWasmAbi for &'a XmlHttpRequest

impl<'a> IntoWasmAbi for &'a XmlSerializer

impl<'a> IntoWasmAbi for &'a XrFrame

impl<'a> IntoWasmAbi for &'a XrHand

impl<'a> IntoWasmAbi for &'a XrInputSource

impl<'a> IntoWasmAbi for &'a XrJointPose

impl<'a> IntoWasmAbi for &'a XrJointSpace

impl<'a> IntoWasmAbi for &'a XrLayer

impl<'a> IntoWasmAbi for &'a XrPose

impl<'a> IntoWasmAbi for &'a XrReferenceSpace

impl<'a> IntoWasmAbi for &'a XrRenderState

impl<'a> IntoWasmAbi for &'a XrRigidTransform

impl<'a> IntoWasmAbi for &'a XrSession

impl<'a> IntoWasmAbi for &'a XrSessionEvent

impl<'a> IntoWasmAbi for &'a XrSessionInit

impl<'a> IntoWasmAbi for &'a XrSpace

impl<'a> IntoWasmAbi for &'a XrSystem

impl<'a> IntoWasmAbi for &'a XrView

impl<'a> IntoWasmAbi for &'a XrViewerPose

impl<'a> IntoWasmAbi for &'a XrViewport

impl<'a> IntoWasmAbi for &'a XrWebGlLayer

impl<'a> IntoWasmAbi for &'a XrWebGlLayerInit

impl<'a> IntoWasmAbi for &'a XsltProcessor