pub trait BuilderFlow<M>where
Self: Sized,{
// Required method
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§
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.