[][src]Enum rattle_items_match::Operator

pub enum Operator<T> {
    One(Condition<T>),
    Or(ConditionsVal<T>),
}

Variants

One(Condition<T>)

1つしかなければ、これが簡便。

OR operator.
OR演算子(||)で、条件式をつないでいることに相当します。

This is for multinomial operators.
多項演算子にするならこれ。どれか1つでもマッチすれば、マッチ。

Trait Implementations

impl<T: Clone> Clone for Operator<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Operator<T> where
    T: RefUnwindSafe

impl<T> Send for Operator<T> where
    T: Send

impl<T> Sync for Operator<T> where
    T: Sync

impl<T> Unpin for Operator<T> where
    T: Unpin

impl<T> UnwindSafe for Operator<T> where
    T: UnwindSafe

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> 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.