Type Alias RootedValueArray

Source
pub type RootedValueArray<const N: usize> = Rooted<ValueArray<N>>;
Expand description

RootedValueArray roots an internal fixed-size array of Values

Aliased Type§

#[repr(C)]
pub struct RootedValueArray<const N: usize> { pub vtable: *const RootedVFTable, pub base: RootedBase, pub data: ValueArray<N>, }

Fields§

§vtable: *const RootedVFTable§base: RootedBase§data: ValueArray<N>