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