Enum exprz::vec::MultiExpr[][src]

pub enum MultiExpr<A = (), G = ()> {
    Atom(A),
    Group(Vec<Self>, G),
}
This is supported on crate feature alloc only.

Vector MultiExpression Type

Variants

Atom(A)

Atomic Expression

Group(Vec<Self>, G)

Grouped Expression

Trait Implementations

impl<A: Clone, G: Clone> Clone for MultiExpr<A, G>[src]

impl<A: Debug, G: Debug> Debug for MultiExpr<A, G>[src]

impl<A, G> Default for MultiExpr<A, G> where
    G: Default
[src]

impl<A: Eq, G: Eq> Eq for MultiExpr<A, G>[src]

impl<A, G> Expression for MultiExpr<A, G>[src]

type Atom = A

Atomic Element Type

type Group = (Vec<Self>, G)

Group Expression Type

impl<A, G> From<MultiExpr<A, G>> for Expr<MultiExpr<A, G>>[src]

impl<'e, A, G> HasGroupType<'e, MultiExpr<A, G>, G> for <<MultiExpr<A, G> as Expression>::Group as IntoIteratorGen<MultiExpr<A, G>>>::IterGen[src]

impl<A: Hash, G: Hash> Hash for MultiExpr<A, G>[src]

impl<A, G> IntoIteratorGen<MultiExpr<A, G>> for (Vec<MultiExpr<A, G>>, G)[src]

type IterGen = (&'t Vec<MultiExpr<A, G>>, &'t G)

Underlying IteratorGen Type

impl<A, G> IteratorGen<MultiExpr<A, G>> for (&Vec<MultiExpr<A, G>>, &G)[src]

type Item = &'t MultiExpr<A, G>

type Iter = Iter<'t, MultiExpr<A, G>>

Underlying Iterator Type

impl<A: PartialEq, G: PartialEq> PartialEq<MultiExpr<A, G>> for MultiExpr<A, G>[src]

impl<A, G> StructuralEq for MultiExpr<A, G>[src]

impl<A, G> StructuralPartialEq for MultiExpr<A, G>[src]

Auto Trait Implementations

impl<A, G> Send for MultiExpr<A, G> where
    A: Send,
    G: Send

impl<A, G> Sync for MultiExpr<A, G> where
    A: Sync,
    G: Sync

impl<A, G> Unpin for MultiExpr<A, G> where
    A: Unpin,
    G: 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.