pub trait BuilderFlow<M>where
    Self: Sized,
{ 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

Implementors