Trait PointerType

Source
pub trait PointerType: Sized + Sealed {
    const SIZE: u32 = _;
}
Expand description

Something that can be wrapped in a wasm Pointer.

This trait is sealed.

Provided Associated Constants§

Source

const SIZE: u32 = _

The size of the type in wasm.

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 PointerType for u8

Source§

impl PointerType for u16

Source§

impl PointerType for u32

Source§

impl PointerType for u64

Implementors§