Build

Trait Build 

Source
pub trait Build<I = ()>: 'static {
    // Required method
    fn build(container: &mut Container<I>) -> Self;
}
Expand description

A type that can be constructed given the Container.

Required Methods§

Source

fn build(container: &mut Container<I>) -> Self

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§