pub trait BasicMediatorBuilderInterface<M, Ev> {
fn add_listener<F>(self, f: F) -> Self
where
F: Listener<Ev>,
Ev: Debug;
}Expand description
Basic builder fuctionality:
Adding a Listener to the builder.
Required Methods
fn add_listener<F>(self, f: F) -> Selfwhere
F: Listener<Ev>,
Ev: Debug,
Implementors
impl<M, Dep, Ev> BasicMediatorBuilderInterface<M, Ev> for CxAwareAsyncBuilder<Dep, Ev>where
Dep: Debug,
Ev: Debug,
Available on crate feature
async only.impl<M, Ev> BasicMediatorBuilderInterface<M, Ev> for BasicAsyncBuilder<Ev>where
Ev: Debug,
Available on crate feature
async only.