[][src]Struct shaku::ContainerBuildContext

pub struct ContainerBuildContext { /* fields omitted */ }

Holds registration data, providers, and resolved components while building a Container. This struct is used during Component::build.

Methods

impl ContainerBuildContext[src]

pub fn resolve<I: Interface + ?Sized>(&mut self) -> Result<Arc<I>>[src]

Resolve a component. The component interface must be listed as a Dependency in Component::dependencies.

pub fn insert<I: Interface + ?Sized>(&mut self, component: Box<I>)[src]

Insert the resolved component into the build context. This must be called at the end of Component::build in lieu of returning the component directly (the generic type information is retained this way).

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.