TryBuilderFlow

Trait TryBuilderFlow 

Source
pub trait TryBuilderFlow<M>
where Self: Sized,
{ type Error; // Required method fn build(self) -> Result<M, Self::Error>; }
Available on crate feature async only.
Expand description

A TryBuilderFlow is generic over M which is the mediator that will be tried to be built by TryBuilderFlow::build().

Required Associated Types§

Required Methods§

Source

fn build(self) -> Result<M, Self::Error>

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> TryBuilderFlow<CxAwareAsyncMediator<Dep, Ev>> for CxAwareAsyncBuilder<Dep, Ev>
where Dep: Debug, Ev: Debug,