pub(crate) trait AllFactsExt {
    fn enabled(tcx: TyCtxt<'_>) -> bool;
    fn write_to_dir(
        &self,
        dir: impl AsRef<Path>,
        location_table: &LocationTable
    ) -> Result<(), Box<dyn Error>>; }

Required Methods

Returns true if there is a need to gather AllFacts given the current -Z flags.

Implementors