pub trait MakeVTable<'borr, T, OrigPtr, CanDowncast> {
type Helper0;
type Helper1;
const HELPER0: Self::Helper0;
const HELPER1: Self::Helper1;
const VTABLE_REF: Self;
}
Expand description
Csontructs a vtable.
This is only exposed to allow users to construct
DynTrait
s with a generic I
type parameter.
Required Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.