Crate rc_bump

Source
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.
BumpMember
A pointer to a Bump owning the underlying object, like a Box.
MixedPaving
A paving which will allocate objects too large out of any bump
Paving
A structure generating bumps as appropriated
RcBumpMember
A pointer to a Bump offering shared ownership of the pointed object, similar to std::rc::Rc.

Enums§

OwnedMixedPavingMember
A pointer to a mixed paving owning its pointee
SharedMixedPavingMember
A pointer to a mixed paving sharing ownership of its pointee