Struct dot_parser::ast::EdgeStmt [−][src]
pub struct EdgeStmt<'a, A = (&'a str, &'a str)> {
pub node: NodeID<'a>,
pub next: EdgeRHS<'a>,
pub attr: Option<AttrList<'a, A>>,
}
Expand description
The description of an edge. This corresponds to the edge_stmt
non-terminal
of the grammar.
Fields
node: NodeID<'a>
The origin of the edge.
next: EdgeRHS<'a>
The destination of the edge.
attr: Option<AttrList<'a, A>>
The attributes of the edge.
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