pub struct EdgeRHS<A> {
pub to: Either<NodeID, Subgraph<A>>,
pub next: Option<Box<EdgeRHS<A>>>,
}
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§
§to: Either<NodeID, Subgraph<A>>
The identifier of the destination of the edge.
next: Option<Box<EdgeRHS<A>>>
A possible chained RHS.
Trait Implementations§
Source§impl<A: Ord> Ord for EdgeRHS<A>
impl<A: Ord> Ord for EdgeRHS<A>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<A: PartialOrd> PartialOrd for EdgeRHS<A>
impl<A: PartialOrd> PartialOrd for EdgeRHS<A>
Source§impl<'a, A> TryFrom<Pair<'a, Rule>> for EdgeRHS<A>
impl<'a, A> TryFrom<Pair<'a, Rule>> for EdgeRHS<A>
Source§type Error = ParseError<'a>
type Error = ParseError<'a>
The type returned in the event of a conversion error.
impl<A: Eq> Eq for EdgeRHS<A>
impl<A> StructuralPartialEq for EdgeRHS<A>
Auto Trait Implementations§
impl<A> Freeze for EdgeRHS<A>
impl<A> RefUnwindSafe for EdgeRHS<A>where
A: RefUnwindSafe,
impl<A> Send for EdgeRHS<A>where
A: Send,
impl<A> Sync for EdgeRHS<A>where
A: Sync,
impl<A> Unpin for EdgeRHS<A>where
A: Unpin,
impl<A> UnwindSafe for EdgeRHS<A>where
A: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more