pub trait Delegate: MergeDelegate<Id = Self::Id, Address = Self::Address> + ReconnectDelegate<Id = Self::Id, Address = Self::Address> {
type Id: Id;
type Address: CheapClone + Send + Sync + 'static;
}Expand description
Required Associated Types§
Sourcetype Address: CheapClone + Send + Sync + 'static
type Address: CheapClone + Send + Sync + 'static
The address type of the delegate
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.