Type Alias mozjs_sys::jsgc::RootedValueArray

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

RootedValueArray roots an internal fixed-size array of Values

Aliased Type§

struct RootedValueArray<const N: usize> {
    pub vtable: *const RootedVFTable,
    pub base: RootedBase,
    pub ptr: ValueArray<N>,
}

Fields§

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