struct BlockFormatter<'res, 'mir, 'tcx, A>where
    A: Analysis<'tcx>,{
    results: ResultsRefCursor<'res, 'mir, 'tcx, A>,
    bg: Background,
    style: OutputStyle,
}

Fields§

§results: ResultsRefCursor<'res, 'mir, 'tcx, A>§bg: Background§style: OutputStyle

Implementations§

source§

impl<'res, 'mir, 'tcx, A> BlockFormatter<'res, 'mir, 'tcx, A>where A: Analysis<'tcx>, A::Domain: DebugWithContext<A>,

source

const HEADER_COLOR: &'static str = "#a0a0a0"

source

fn toggle_background(&mut self) -> Background

source

fn write_node_label( &mut self, w: &mut impl Write, block: BasicBlock ) -> Result<()>

source

fn write_block_header_simple( &mut self, w: &mut impl Write, block: BasicBlock ) -> Result<()>

source

fn write_block_header_with_state_columns( &mut self, w: &mut impl Write, block: BasicBlock, state_column_names: &[&str] ) -> Result<()>

source

fn write_statements_and_terminator( &mut self, w: &mut impl Write, block: BasicBlock ) -> Result<()>

source

fn write_row<W: Write>( &mut self, w: &mut W, i: &str, mir: &str, f: impl FnOnce(&mut Self, &mut W, &str) -> Result<()> ) -> Result<()>

Write a row with the given index and MIR, using the function argument to fill in the “STATE” column(s).

source

fn write_row_with_full_state( &mut self, w: &mut impl Write, i: &str, mir: &str ) -> Result<()>

Auto Trait Implementations§

§

impl<'res, 'mir, 'tcx, A> !RefUnwindSafe for BlockFormatter<'res, 'mir, 'tcx, A>

§

impl<'res, 'mir, 'tcx, A> !Send for BlockFormatter<'res, 'mir, 'tcx, A>

§

impl<'res, 'mir, 'tcx, A> !Sync for BlockFormatter<'res, 'mir, 'tcx, A>

§

impl<'res, 'mir, 'tcx, A> Unpin for BlockFormatter<'res, 'mir, 'tcx, A>where <A as AnalysisDomain<'tcx>>::Domain: Unpin,

§

impl<'res, 'mir, 'tcx, A> !UnwindSafe for BlockFormatter<'res, 'mir, 'tcx, A>

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.