Struct rustc_data_structures::graph::Edge [] [src]

pub struct Edge<E> {
    pub data: E,
    // some fields omitted
}
Unstable (rustc_private)

Fields

data: E
Unstable (rustc_private)

Methods

impl<E> Edge<E>
[src]

fn source(&self) -> NodeIndex

fn target(&self) -> NodeIndex

fn source_or_target(&self, direction: Direction) -> NodeIndex

Trait Implementations

impl<N> SnapshotVecDelegate for Edge<N>
[src]

type Value = Edge<N>

type Undo = ()

fn reverse(_: &mut Vec<Edge<N>>, _: ())

impl<E: Debug> Debug for Edge<E>
[src]

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.