pub unsafe trait IsLoopRc: Clone + AsRef<LoopRef> + 'static { }
Expand description
Trait implemented by objects that implement a pw_loop
and are reference counted in some way.
§Safety
The LoopRef
returned by the implementation of AsRef<LoopRef>
must remain valid as long as any clone
of the trait implementor is still alive. \
Object Safety§
This trait is not object safe.