[][src]Struct egg::pattern::Condition

pub struct Condition<L: Language> {
    pub lhs: Pattern<L>,
    pub rhs: Pattern<L>,
}

Fields

lhs: Pattern<L>rhs: Pattern<L>

Trait Implementations

impl<L: Clone + Language> Clone for Condition<L>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<L: PartialEq + Language> PartialEq<Condition<L>> for Condition<L>[src]

impl<L: Debug + Language> Debug for Condition<L>[src]

Auto Trait Implementations

impl<L> Unpin for Condition<L> where
    <L as Language>::Constant: Unpin,
    <L as Language>::Operator: Unpin,
    <L as Language>::Variable: Unpin,
    <L as Language>::Wildcard: Unpin

impl<L> Sync for Condition<L> where
    <L as Language>::Constant: Sync,
    <L as Language>::Operator: Sync,
    <L as Language>::Variable: Sync,
    <L as Language>::Wildcard: Sync

impl<L> Send for Condition<L> where
    <L as Language>::Constant: Send,
    <L as Language>::Operator: Send,
    <L as Language>::Variable: Send,
    <L as Language>::Wildcard: Send

impl<L> UnwindSafe for Condition<L> where
    <L as Language>::Constant: UnwindSafe,
    <L as Language>::Operator: UnwindSafe,
    <L as Language>::Variable: UnwindSafe,
    <L as Language>::Wildcard: UnwindSafe

impl<L> RefUnwindSafe for Condition<L> where
    <L as Language>::Constant: RefUnwindSafe,
    <L as Language>::Operator: RefUnwindSafe,
    <L as Language>::Variable: RefUnwindSafe,
    <L as Language>::Wildcard: RefUnwindSafe

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for 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.

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]