pub trait BuilderFlow<M>where
Self: Sized,{
// Required method
fn build(self) -> M;
}Expand description
A BuilderFlow is generic over M
which is the mediator that will be
built by BuilderFlow::build().
Required Methods§
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.
Implementors§
impl<Ev> BuilderFlow<BasicAsyncMediator<Ev>> for BasicAsyncBuilder<Ev>where
Ev: Debug,
Available on crate feature
async only.