pub fn pass_edge(
writer: &mut impl Write,
edge: &Edge,
table: &TableState,
indent: usize,
) -> Result<()>
Expand description
Prints a given Edge to stdout.
§Arguments
writer
: The Write
r to write to.
edge
: The Edge to print.
table
: The VirtualTableState that we use to resolve indices.
indent
: The indent with which to print the buffer.
§Returns
Nothing, but does print the edge to stdout.