trait IntoSlots {
type Slots: Slots;
// Required method
fn make_slots() -> Self::Slots;
}Expand description
Internal helper to take a cons-list of Storable types and return a cons-list of slots for them.
Required Associated Types§
Required Methods§
Sourcefn make_slots() -> Self::Slots
fn make_slots() -> Self::Slots
Creates a new instance of the slot cons-list with all slots empty.
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.