pub trait HasChildSource<ChildId> {
    type Value;

    fn child_source(
        &self,
        db: &dyn DefDatabase
    ) -> InFile<ArenaMap<ChildId, Self::Value>>; }

Required Associated Types§

Required Methods§

Implementors§