wonderbox 0.2.0

A minimalistic IoC library.
Documentation

A minimalistic IoC library.

Examples

use wonderbox::{register, resolve_dependencies, Container};

trait Foo {}

#[derive(Debug, Default)]
struct FooImpl {
stored_string: String,
}

#[resolve_dependencies]
impl FooImpl {
fn new(stored_string: String) -> Self {
Self { stored_string }
}
}

impl Foo for FooImpl {}

let mut container = Container::new();
container.register_clone("foo".to_string());
register!(container, FooImpl as Box<dyn Foo>);

let foo = container.resolve::<Box<dyn Foo>>();
assert!(foo.is_some())