pub struct DependencyMap { /* private fields */ }
Expand description

A DI container with multiple dependencies.

This DI container stores types by their corresponding type identifiers. It cannot prove at compile-time that a type of a requested value exists within the container, so if you do not provide necessary types but they were requested, it will panic.

Examples

use dptree::di::{DependencyMap, DependencySupplier};

let mut container = DependencyMap::new();
container.insert(5_i32);
container.insert("abc");

assert_eq!(container.get(), Arc::new(5_i32));
assert_eq!(container.get(), Arc::new("abc"));

// If a type of a value already exists within the container, it will be replaced.
let old_value = container.insert(10_i32).unwrap();

assert_eq!(old_value, Arc::new(5_i32));
assert_eq!(container.get(), Arc::new(10_i32));

When a value is not found within the container, it will panic:

use dptree::di::{DependencyMap, DependencySupplier};
let mut container = DependencyMap::new();
container.insert(10i32);
container.insert(true);
container.insert("static str");

// thread 'main' panicked at 'alloc::string::String was requested, but not provided. Available types:
//    &str
//    bool
//    i32
// ', /media/hirrolot/772CF8924BEBB279/Documents/Rust/dptree/src/di.rs:150:17
// note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
let string: Arc<String> = container.get();

Implementations

Inserts a value into the container.

If the container do not has this type present, None is returned. Otherwise, the value is updated, and the old value is returned.

Inserts all dependencies from another container into itself.

Removes a value from the container.

If the container do not has this type present, None is returned. Otherwise, the value is removed and returned.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Get the value. Read more

Inserts value into itself, returning the previous value, if exists.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.