pub trait BuilderFlow<M>where
    Self: Sized,
{ fn build(self) -> M; }
Available on crate feature async only.
Expand description

A BuilderFlow is generic over M which is the mediator that will be built by BuilderFlow::build().

Required Methods

Implementors