Struct dot_parser::ast::EdgeRHS [−][src]
Expand description
The Right hand side of an edge description. This corresponds to the
EdgeRHS
non-terminal of the grammar.
Notice that the grammar allows multiple EdgeRHS in sequence, to chain edges:
A -> B -> C
.
Fields
node: NodeID<'a>
The identifier of the destination of the edge.
next: Option<Box<EdgeRHS<'a>>>
A possible chained RHS.
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more