pub unsafe trait PinningStorage: Storage { }
Expand description

A storage that allocates pinned memory handles.

Any memory allocated inside of this storage will not be moved nor reused until deallocate is called on its handle. As such, an object in the memory can be safely pinned.

Implementors