[][src]Struct cfg::rule::RuleRef

pub struct RuleRef<'a, H: 'a> {
    pub lhs: Symbol,
    pub rhs: &'a [Symbol],
    pub history: &'a H,
}

References rule's components.

Fields

lhs: Symbol

Left-hand side.

rhs: &'a [Symbol]

Right-hand side.

history: &'a H

The rule's history.

Trait Implementations

impl<'a, H> GrammarRule for RuleRef<'a, H>[src]

type History = H

The type of history carried with the rule.

impl<'a, H> Clone for RuleRef<'a, H>[src]

impl<'a, H> Copy for RuleRef<'a, H>[src]

Auto Trait Implementations

impl<'a, H> Send for RuleRef<'a, H> where
    H: Sync

impl<'a, H> Sync for RuleRef<'a, H> where
    H: Sync

impl<'a, H> Unpin for RuleRef<'a, H>

impl<'a, H> UnwindSafe for RuleRef<'a, H> where
    H: RefUnwindSafe

impl<'a, H> RefUnwindSafe for RuleRef<'a, H> where
    H: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]