pub trait RefCounter: Clone + Unpin + Send + Sync + 'static { }
Expand description

This trait represents the strength of an address’s reference counting. It is an internal trait. There are two implementations of this trait: Weak and Strong. These can be provided as the second type argument to Address in order to change how the address affects the actor’s dropping. Read the docs of Address to find out more.

Implementors