CxAwareMediatorBuilderInterface

Trait CxAwareMediatorBuilderInterface 

Source
pub trait CxAwareMediatorBuilderInterface<M, Dep, Ev> {
    // Required method
    fn add_dependency(self, dep: Dep) -> Self
       where Ev: Debug;
}
Available on crate feature async only.
Expand description

Advanced builder fuctionality: Adding a dependency dep to the builder.

Required Methods§

Source

fn add_dependency(self, dep: Dep) -> Self
where Ev: Debug,

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