[][src]Struct prec::Rule

pub struct Rule<Op> { /* fields omitted */ }

A single operator and an Assoc

Implementations

impl<Op> Rule<Op>[src]

pub fn new(op: Op, assoc: Assoc) -> Self[src]

Trait Implementations

impl<Ru> BitOr<Rule<Ru>> for Rule<Ru>[src]

type Output = Self

The resulting type after applying the | operator.

impl<Op: Debug> Debug for Rule<Op>[src]

Auto Trait Implementations

impl<Op> RefUnwindSafe for Rule<Op> where
    Op: RefUnwindSafe
[src]

impl<Op> Send for Rule<Op> where
    Op: Send
[src]

impl<Op> Sync for Rule<Op> where
    Op: Sync
[src]

impl<Op> Unpin for Rule<Op> where
    Op: Unpin
[src]

impl<Op> UnwindSafe for Rule<Op> where
    Op: UnwindSafe
[src]

Blanket Implementations

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

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

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

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

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

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.