pub trait FromContainer: Sized {
    fn from_container(container: &Container) -> Result<Self, InjectionError>;
}

Required methods

Implementors