Trait rustc_incremental::SvhCalculate
[−]
[src]
pub trait SvhCalculate { fn calculate_krate_hash(self) -> Svh; fn calculate_item_hash(self, def_id: DefId) -> u64; }
Unstable (
rustc_private
)Required Methods
fn calculate_krate_hash(self) -> Svh
Unstable (
rustc_private
)Calculate the SVH for an entire krate.
fn calculate_item_hash(self, def_id: DefId) -> u64
Unstable (
rustc_private
)Calculate the SVH for a particular item.
Implementors
impl<'a, 'tcx> SvhCalculate for TyCtxt<'a, 'tcx, 'tcx>