pub trait DataNotifierTypes {
type Notifier: DataNotifier;
}
Expand description
Trait defining the Notifier
type provided by Bindings to Core that allows
Core to notify Bindings when data is available for some networking resource
(e.g., a socket).
Required Associated Types§
Sourcetype Notifier: DataNotifier
type Notifier: DataNotifier
The type of a notifier that can be used to signal to a receiver that data is available.