[][src]Module corundum::prc

Single-threaded reference-counting persistent pointers

Structs

Prc

A single-thread reference-counting persistent pointer. 'Prc' stands for 'Persistent Reference Counted'.

PrcBox
VWeak

VWeak is a version of Prc that holds a non-owning reference to the managed allocation in the volatile heap. The allocation is accessed by calling upgrade on the VWeak pointer, which returns an Option<Prc<T>>.

Weak

Weak is a version of Prc that holds a non-owning reference to the managed allocation. The allocation is accessed by calling upgrade on the Weak pointer, which returns an Option<Prc<T>>.

Functions

ws