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.
- Process
Owned - A value that is owned by the process itself.
- Process
Owned Mut - A mutable version of
ProcessOwned
.