Trait oxischeme::heap::ToGcThing [-]  [+] [src]

pub trait ToGcThing: Debug {
    fn to_gc_thing(&self) -> Option<GcThing>;
}

A trait for types that can be coerced to a GcThing.

Required Methods

fn to_gc_thing(&self) -> Option<GcThing>

Coerce this value to a GcThing.

Implementors