Type Alias mozjs::jsapi::RootedVector_Base

source ·
pub type RootedVector_Base = Rooted<u8>;
Expand description

Local variable of type T whose value is always rooted. This is typically used for local variables, or for non-rooted values being passed to a function that requires a handle, e.g. Foo(Root(cx, x)).

If you want to add additional methods to Rooted for a specific specialization, define a RootedOperations specialization containing them.

Aliased Type§

struct RootedVector_Base {
    pub stack: *mut *mut Rooted<*mut c_void>,
    pub prev: *mut Rooted<*mut c_void>,
    pub ptr: u8,
}

Fields§

§stack: *mut *mut Rooted<*mut c_void>§prev: *mut Rooted<*mut c_void>§ptr: u8