pub trait GetVTable<S, I>: Sized {
const VTABLE: NonExhaustiveVtable_Ref<Self, S, I> = _;
}
Expand description
Gets the vtable of NonExhaustive<Self,S,I>
.
This trait is only exposed for use in bounds,
and cannot be implemented outside of abi_stable
.
Provided Associated Constants§
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.