Trait zerogc_context::handle::RawHandleImpl[][src]

pub unsafe trait RawHandleImpl: RawCollectorImpl {
    type TypeInfo: Sized;
    fn type_info_of<T: GcSafe>() -> &'static Self::TypeInfo;
fn handle_list(&self) -> &GcHandleList<Self>; }
Expand description

A RawCollectorImpl that supports handles

Associated Types

type TypeInfo: Sized[src]

Expand description

Type information

Required methods

fn type_info_of<T: GcSafe>() -> &'static Self::TypeInfo[src]

fn handle_list(&self) -> &GcHandleList<Self>[src]

Implementors