Trait ioc::Method [] [src]

pub trait Method<'a, Key, SvcBase: ?Sized>: Any where
    Key: Key,
    SvcBase: Any
{ type Ret: 'a; fn resolve_unprotected(
        ioc: &'a Container<Key, SvcBase>
    ) -> Result<Self::Ret, Error<'a, Key>>; fn try_resolve_unprotected(
        ioc: &'a Container<Key, SvcBase>
    ) -> Result<Self::Ret, Error<'a, Key>>; }

Associated Types

Required Methods

Implementors