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