pub trait DepGraph {
    type ModuleId: Debug + Copy + Eq + Hash + Ord;
    fn deps_of(&self, module_id: Self::ModuleId) -> Vec<Self::ModuleId>;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors