struct StateDiffCollector<D> {
    prev_state: D,
    before: Option<Vec<String>>,
    after: Vec<String>,
}

Fields§

§prev_state: D§before: Option<Vec<String>>§after: Vec<String>

Implementations§

source§

impl<D> StateDiffCollector<D>

source

fn run<'tcx, A>( body: &Body<'tcx>, block: BasicBlock, results: &mut Results<'tcx, A>, style: OutputStyle ) -> Selfwhere A: Analysis<'tcx, Domain = D>, D: DebugWithContext<A>,

Trait Implementations§

source§

impl<'tcx, A> ResultsVisitor<'_, 'tcx, Results<'tcx, A, IndexVec<BasicBlock, <A as AnalysisDomain<'tcx>>::Domain>>> for StateDiffCollector<A::Domain>where A: Analysis<'tcx>, A::Domain: DebugWithContext<A>,

§

type FlowState = <A as AnalysisDomain<'tcx>>::Domain

source§

fn visit_block_start( &mut self, _results: &mut Results<'tcx, A>, state: &Self::FlowState, _block_data: &BasicBlockData<'tcx>, _block: BasicBlock )

source§

fn visit_block_end( &mut self, _results: &mut Results<'tcx, A>, state: &Self::FlowState, _block_data: &BasicBlockData<'tcx>, _block: BasicBlock )

source§

fn visit_statement_before_primary_effect( &mut self, results: &mut Results<'tcx, A>, state: &Self::FlowState, _statement: &Statement<'tcx>, _location: Location )

Called with the before_statement_effect of the given statement applied to state but not its statement_effect.
source§

fn visit_statement_after_primary_effect( &mut self, results: &mut Results<'tcx, A>, state: &Self::FlowState, _statement: &Statement<'tcx>, _location: Location )

Called with both the before_statement_effect and the statement_effect of the given statement applied to state.
source§

fn visit_terminator_before_primary_effect( &mut self, results: &mut Results<'tcx, A>, state: &Self::FlowState, _terminator: &Terminator<'tcx>, _location: Location )

Called with the before_terminator_effect of the given terminator applied to state but not its terminator_effect.
source§

fn visit_terminator_after_primary_effect( &mut self, results: &mut Results<'tcx, A>, state: &Self::FlowState, _terminator: &Terminator<'tcx>, _location: Location )

Called with both the before_terminator_effect and the terminator_effect of the given terminator applied to state. Read more

Auto Trait Implementations§

§

impl<D> RefUnwindSafe for StateDiffCollector<D>where D: RefUnwindSafe,

§

impl<D> Send for StateDiffCollector<D>where D: Send,

§

impl<D> Sync for StateDiffCollector<D>where D: Sync,

§

impl<D> Unpin for StateDiffCollector<D>where D: Unpin,

§

impl<D> UnwindSafe for StateDiffCollector<D>where D: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.