pub trait HasDepContext: Copy {
    type DepKind: DepKind;
    type DepContext: DepContext<DepKind = Self::DepKind>;

    fn dep_context(&self) -> &Self::DepContext;
}

Required Associated Types

Required Methods

Implementors