pub trait Value<Tcx: DepContext>: Sized {
    // Required method
    fn from_cycle_error(
        tcx: Tcx,
        cycle: &[QueryInfo],
        guar: ErrorGuaranteed
    ) -> Self;
}

Required Methods§

source

fn from_cycle_error( tcx: Tcx, cycle: &[QueryInfo], guar: ErrorGuaranteed ) -> Self

Implementors§

source§

impl<Tcx: DepContext, T> Value<Tcx> for T