TypedArrayElement

Trait TypedArrayElement 

Source
pub trait TypedArrayElement: TypedArrayElement {
    const NAME: &'static str;
}

Required Associated Constants§

Source

const NAME: &'static str

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 TypedArrayElement for ArrayBufferViewU8

Source§

const NAME: &'static str = "ArrayBufferView"

Source§

impl TypedArrayElement for ClampedU8

Source§

const NAME: &'static str = "ClampedUint8Array"

Source§

impl TypedArrayElement for Float32

Source§

const NAME: &'static str = "Float32Array"

Source§

impl TypedArrayElement for Float64

Source§

const NAME: &'static str = "Float64Array"

Source§

impl TypedArrayElement for Int8

Source§

const NAME: &'static str = "Int8Array"

Source§

impl TypedArrayElement for Int16

Source§

const NAME: &'static str = "Int16Array"

Source§

impl TypedArrayElement for Int32

Source§

const NAME: &'static str = "Int32Array"

Source§

impl TypedArrayElement for Uint8

Source§

const NAME: &'static str = "Uint8Array"

Source§

impl TypedArrayElement for Uint16

Source§

const NAME: &'static str = "Uint16Array"

Source§

impl TypedArrayElement for Uint32

Source§

const NAME: &'static str = "Uint32Array"

Implementors§