pub trait CloneAnalysis {
    // Required method
    fn clone_analysis(&self) -> Self;
}
Expand description

Defines an Analysis which can be cloned for use in multiple ResultsCursors or ResultsVisitors. Note this need not be a full clone, only enough of one to be used with a new ResultsCursor or ResultsVisitor

Required Methods§

source

fn clone_analysis(&self) -> Self

Implementors§

source§

impl CloneAnalysis for MaybeRequiresStorage<'_, '_, '_>

source§

impl CloneAnalysis for MaybeStorageLive<'_>

source§

impl<'tcx, A> CloneAnalysis for Awhere A: Analysis<'tcx> + Copy,