TryBuilderInternal

Trait TryBuilderInternal 

Source
pub trait TryBuilderInternal<M, Flow>
where Flow: TryBuilderFlow<M>, Self: Sized,
{ // Required method fn builder() -> Flow; }
Available on crate feature async only.
Expand description

Trait for creating a builder that implements TryBuilderFlow 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<Dep, Ev> TryBuilderInternal<CxAwareAsyncMediator<Dep, Ev>, CxAwareAsyncBuilder<Dep, Ev>> for CxAwareAsyncMediator<Dep, Ev>
where Dep: Debug, Ev: Debug,