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.

Implementations on Foreign Types§

source§

impl PointerType for u8

source§

impl PointerType for u64

source§

impl PointerType for u32

source§

impl PointerType for u16

Implementors§