Trait Analysis

Source
pub trait Analysis {
    // Required methods
    fn name(&self) -> &'static str;
    fn run(&mut self);
    fn reset(&mut self);
}

Required Methods§

Source

fn name(&self) -> &'static str

Return the name of the analysis.

Source

fn run(&mut self)

Execute the analysis.

Source

fn reset(&mut self)

Reset the analysis result.

Implementors§

Source§

impl<'tcx> Analysis for DefaultAlias<'tcx>

Source§

impl<'tcx> Analysis for MopAlias<'tcx>

Source§

impl<'tcx, T> Analysis for DefaultRange<'tcx, T>