Struct rustc_borrowck::graphviz::DataflowLabeller [] [src]

pub struct DataflowLabeller<'a, 'tcx: 'a> {
    pub inner: LabelledCFG<'a, 'tcx>,
    pub variants: Vec<Variant>,
    pub borrowck_ctxt: &'a BorrowckCtxt<'a, 'tcx>,
    pub analysis_data: &'a AnalysisData<'a, 'tcx>,
}
🔬 This is a nightly-only experimental API. (rustc_private)

Fields

🔬 This is a nightly-only experimental API. (rustc_private)
🔬 This is a nightly-only experimental API. (rustc_private)
🔬 This is a nightly-only experimental API. (rustc_private)
🔬 This is a nightly-only experimental API. (rustc_private)

Trait Implementations

impl<'a, 'tcx> Labeller<'a> for DataflowLabeller<'a, 'tcx>
[src]

🔬 This is a nightly-only experimental API. (rustc_private)

🔬 This is a nightly-only experimental API. (rustc_private)

🔬 This is a nightly-only experimental API. (rustc_private)

Must return a DOT compatible identifier naming the graph.

🔬 This is a nightly-only experimental API. (rustc_private)

Maps n to a unique identifier with respect to self. The implementor is responsible for ensuring that the returned name is a valid DOT identifier. Read more

🔬 This is a nightly-only experimental API. (rustc_private)

Maps n to a label that will be used in the rendered output. The label need not be unique, and may be the empty string; the default is just the output from node_id. Read more

🔬 This is a nightly-only experimental API. (rustc_private)

Maps e to a label that will be used in the rendered output. The label need not be unique, and may be the empty string; the default is in fact the empty string. Read more

🔬 This is a nightly-only experimental API. (rustc_private)

Maps n to one of the [graphviz shape names][1]. If None is returned, no shape attribute is specified. Read more

🔬 This is a nightly-only experimental API. (rustc_private)

Maps n to a style that will be used in the rendered output.

🔬 This is a nightly-only experimental API. (rustc_private)

Maps e to a style that will be used in the rendered output.

impl<'a, 'tcx> GraphWalk<'a> for DataflowLabeller<'a, 'tcx>
[src]

🔬 This is a nightly-only experimental API. (rustc_private)

🔬 This is a nightly-only experimental API. (rustc_private)

🔬 This is a nightly-only experimental API. (rustc_private)

Returns all the nodes in this graph.

🔬 This is a nightly-only experimental API. (rustc_private)

Returns all of the edges in this graph.

🔬 This is a nightly-only experimental API. (rustc_private)

The source node for edge.

🔬 This is a nightly-only experimental API. (rustc_private)

The target node for edge.