pub struct DfaTransition {
pub source: DfaStateId,
pub symbol: i32,
pub target: DfaStateId,
}Expand description
Read-only transition exposed by parser-DFA diagnostics.
Fields§
§source: DfaStateId§symbol: i32§target: DfaStateIdTrait Implementations§
Source§impl Clone for DfaTransition
impl Clone for DfaTransition
Source§fn clone(&self) -> DfaTransition
fn clone(&self) -> DfaTransition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DfaTransition
Source§impl Debug for DfaTransition
impl Debug for DfaTransition
impl Eq for DfaTransition
Source§impl PartialEq for DfaTransition
impl PartialEq for DfaTransition
impl StructuralPartialEq for DfaTransition
Auto Trait Implementations§
impl Freeze for DfaTransition
impl RefUnwindSafe for DfaTransition
impl Send for DfaTransition
impl Sync for DfaTransition
impl Unpin for DfaTransition
impl UnsafeUnpin for DfaTransition
impl UnwindSafe for DfaTransition
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