Expand description
This crate offers fast and locality-aware allocation similar to bumpalo but without using lifetimes, relying instead on reference counting.
Structs§
- Bump
- A zone of memory to allocate into.
- Bump
Member - A pointer to a
Bump
owning the underlying object, like a Box. - Mixed
Paving - A paving which will allocate objects too large out of any bump
- Paving
- A structure generating bumps as appropriated
- RcBump
Member - A pointer to a
Bump
offering shared ownership of the pointed object, similar tostd::rc::Rc
.
Enums§
- Owned
Mixed Paving Member - A pointer to a mixed paving owning its pointee
- Shared
Mixed Paving Member - A pointer to a mixed paving sharing ownership of its pointee