Module redox_buffer_pool::marker[][src]

Expand description

Markers for whether the buffer pool will use guards, or not.

Enums

Guard

A marker for buffer slices that will increment the guard counter on allocation, and decrement it on reclamation, to make sure that the pool does not reclaim its memory before the slice is dropped itself.

NoGuard

A marker for buffer slices that are not guarded.

Traits

Marker

A trait to abstract between Guard and NoGuard.