ConstructServices

Trait ConstructServices 

Source
pub trait ConstructServices: Services {
    // Provided method
    fn construct<S>(&mut self)
       where S: Construct<S, Self> + 'static { ... }
}

Provided Methods§

Source

fn construct<S>(&mut self)
where S: Construct<S, Self> + 'static,

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<C> ConstructServices for C
where C: Services,