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

  • 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 to std::rc::Rc.

Enums