froodi 1.0.0-beta.18

An ergonomic Rust IoC container
Documentation
1
2
3
4
5
6
7
8
9
10
use alloc::collections::btree_set::BTreeSet;

use crate::any::TypeInfo;

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct Dependency {
    pub type_info: TypeInfo,
}

pub(crate) const EMPTY_DEPENDENCIES: BTreeSet<Dependency> = BTreeSet::new();