BuilderFlow

Trait BuilderFlow 

Source
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§

Source

fn build(self) -> M

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§

Source§

impl<Ev> BuilderFlow<BasicAsyncMediator<Ev>> for BasicAsyncBuilder<Ev>
where Ev: Debug,

Available on crate feature async only.
Source§

impl<Ev> BuilderFlow<BasicMediator<Ev>> for BasicBuilder<Ev>
where Ev: Debug,