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

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

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl<T: HasDepContext, Q: Copy> HasDepContext for (T, Q)

Implementors§