Trait stabby::Any

source ·
pub trait Any {
    // Required method
    extern "C" fn report(&self) -> &'static TypeReport;
}
Expand description

An ABI-stable equivalent to core::any::Any

Required Methods§

source

extern "C" fn report(&self) -> &'static TypeReport

The report of the type.

Trait Implementations§

source§

impl<'stabby_vt_lt> CompoundVt for dyn Any

§

type Vt<StabbyNextVtable> = VTable<StabbyVtableAny, StabbyNextVtable>

An stabby-generated item for Any

Implementors§

source§

impl<T> Any for T
where T: IStable,