pub trait Provider {
    type Subscriber: 'static + Subscriber;
    type Error: 'static + Display;

    fn start(self) -> Result<Self::Subscriber, Self::Error>;
}
Expand description

Provides event handling support for an endpoint

Required Associated Types

Required Methods

Implementors