Crate process_owned

Crate process_owned 

Source
Expand description

This crate provides the ProcessOwned type, a value that shares its lifetime with the process unless it can be optimally freed earlier than that.

Internally, ProcessOwned uses the Rc type to ensure that the value is only dropped when the last owner is dropped. The specific implementation is subject to change for performance reasons.

Structsยง

Immortal
A value that is truly owned by the process itself.
ProcessOwned
A value that is owned by the process itself.
ProcessOwnedMut
A mutable version of ProcessOwned.