Struct layered_nlp::x::AnyOf3Matcher[][src]

pub struct AnyOf3Matcher<A, B, C>(pub A, pub B, pub C);

Trait Implementations

impl<'l, A: XMatch<'l>, B: XMatch<'l>, C: XMatch<'l>> XMatch<'l> for AnyOf3Matcher<A, B, C>[src]

type Out = AnyOf3<A::Out, B::Out, C::Out>

Usually must be Copy so it’s compatible with any multi-matchers. The Out must be copied in the event of “cartesian” product scenarios where multi-matchers return multiple combinations of their inner matchers’ Out. Read more

fn go<M>(&self, direction: &M, ll_line: &'l LLLine) -> Vec<(Self::Out, ToIdx)> where
    M: XDirection<'l>, 
[src]

Auto Trait Implementations

impl<A, B, C> RefUnwindSafe for AnyOf3Matcher<A, B, C> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe

impl<A, B, C> Send for AnyOf3Matcher<A, B, C> where
    A: Send,
    B: Send,
    C: Send

impl<A, B, C> Sync for AnyOf3Matcher<A, B, C> where
    A: Sync,
    B: Sync,
    C: Sync

impl<A, B, C> Unpin for AnyOf3Matcher<A, B, C> where
    A: Unpin,
    B: Unpin,
    C: Unpin

impl<A, B, C> UnwindSafe for AnyOf3Matcher<A, B, C> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.