Skip to main content

ChainedExt

Trait ChainedExt 

Source
pub trait ChainedExt: Sized {
    // Required method
    fn add_configuration<T: Into<Arc<Configuration>>>(
        self,
        configuration: T,
    ) -> Self;
}
Available on crate feature chained only.
Expand description

Defines chained configuration extension methods for a configuration builder.

Required Methods§

Source

fn add_configuration<T: Into<Arc<Configuration>>>( self, configuration: T, ) -> Self

Adds an existing configuration.

§Arguments

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§