Struct exprz::pattern::WildCardPattern[][src]

pub struct WildCardPattern<'p, W, P>(_, _)
where
    P: Expression,
    W: FnMut(&P::Atom) -> bool
;
This is supported on crate feature pattern only.

Wild Card Pattern

Trait Implementations

impl<'p, W: Clone, P: Clone> Clone for WildCardPattern<'p, W, P> where
    P: Expression,
    W: FnMut(&P::Atom) -> bool, 
[src]

impl<'p, W: Copy, P: Copy> Copy for WildCardPattern<'p, W, P> where
    P: Expression,
    W: FnMut(&P::Atom) -> bool, 
[src]

impl<'p, W: Debug, P: Debug> Debug for WildCardPattern<'p, W, P> where
    P: Expression,
    W: FnMut(&P::Atom) -> bool, 
[src]

impl<'p, W: Eq, P: Eq> Eq for WildCardPattern<'p, W, P> where
    P: Expression,
    W: FnMut(&P::Atom) -> bool, 
[src]

impl<'p, W: Hash, P: Hash> Hash for WildCardPattern<'p, W, P> where
    P: Expression,
    W: FnMut(&P::Atom) -> bool, 
[src]

impl<'p, W: PartialEq, P: PartialEq> PartialEq<WildCardPattern<'p, W, P>> for WildCardPattern<'p, W, P> where
    P: Expression,
    W: FnMut(&P::Atom) -> bool, 
[src]

impl<'p, W, P, E> Pattern<E> for WildCardPattern<'p, W, P> where
    E: Expression,
    W: Fn(&P::Atom) -> bool,
    P: Expression,
    P::Atom: PartialEq<E::Atom>, 
[src]

impl<'p, W, P, E> PatternMut<E> for WildCardPattern<'p, W, P> where
    E: Expression,
    W: FnMut(&P::Atom) -> bool,
    P: Expression,
    P::Atom: PartialEq<E::Atom>, 
[src]

impl<'p, W, P> StructuralEq for WildCardPattern<'p, W, P> where
    P: Expression,
    W: FnMut(&P::Atom) -> bool, 
[src]

impl<'p, W, P> StructuralPartialEq for WildCardPattern<'p, W, P> where
    P: Expression,
    W: FnMut(&P::Atom) -> bool, 
[src]

Auto Trait Implementations

impl<'p, W, P> Send for WildCardPattern<'p, W, P> where
    P: Sync,
    W: Send

impl<'p, W, P> Sync for WildCardPattern<'p, W, P> where
    P: Sync,
    W: Sync

impl<'p, W, P> Unpin for WildCardPattern<'p, W, P> where
    W: Unpin

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.