pub trait TryBuilderInternal<M, Flow>where
Flow: TryBuilderFlow<M>,
Self: Sized,{
// Required method
fn builder() -> Flow;
}Expand description
Trait for creating a builder
that implements TryBuilderFlow
for a mediator M.
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.
Implementors§
impl<Dep, Ev> TryBuilderInternal<CxAwareAsyncMediator<Dep, Ev>, CxAwareAsyncBuilder<Dep, Ev>> for CxAwareAsyncMediator<Dep, Ev>
Available on crate feature
async only.