BuilderInternal

Trait BuilderInternal 

Source
pub trait BuilderInternal<M, Flow>
where Flow: BuilderFlow<M>, Self: Sized,
{ // Required method fn builder() -> Flow; }
Expand description

Trait for creating a builder that implements BuilderFlow for a mediator M.

Required Methods§

Source

fn builder() -> Flow

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> BuilderInternal<BasicAsyncMediator<Ev>, BasicAsyncBuilder<Ev>> for BasicAsyncMediator<Ev>
where Ev: Debug,

Available on crate feature async only.
Source§

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