pub struct Arc {
pub src: usize,
pub dst: usize,
pub symbol: Symbol,
}Expand description
Directed arc between two lattice nodes.
Fields§
§src: usizeSource node index.
dst: usizeDestination node index.
symbol: SymbolSymbol consumed when traversing the arc.
Implementations§
Trait Implementations§
impl Copy for Arc
impl Eq for Arc
impl StructuralPartialEq for Arc
Auto Trait Implementations§
impl Freeze for Arc
impl RefUnwindSafe for Arc
impl Send for Arc
impl Sync for Arc
impl Unpin for Arc
impl UnsafeUnpin for Arc
impl UnwindSafe for Arc
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