Expand description
Modules§
- Hand-rolled implementations of pervasive
StackBox<dyn …>types. - This crates prelude: usage of this crate is designed to be ergonomic provided all the items within this module are in scope.
- Uninteresting module just to expose slice-specific helper types.
Macros§
- Helper macro to define custom
StackBox<dyn …>trait objects. - Convenience macro to batch-create multiple
Slots. - Convenience macro for more ergonomic
StackBoxconstructions.
Structs§
- Stack1-allocated
Box. Think of this as of&'frame mut T, but withmovesemantics (no reborrowing!) which allow the “reference” to drop its pointee.
Functions§
- Same as
Slot::VACANT, but using function call syntax to avoid firing the trigger-happyconst_item_mutationlint.