[][src]Struct lfa::basis::Stack

pub struct Stack<B1, B2> { /* fields omitted */ }

Stack the output of two Basis instances.

Implementations

impl<B1, B2> Stack<B1, B2>[src]

pub fn new(b1: B1, b2: B2) -> Self[src]

Trait Implementations

impl<T, B1, B2> Basis<T> for Stack<B1, B2> where
    T: Clone,
    B1: Basis<T, Value = Features>,
    B2: Basis<T, Value = Features>, 
[src]

impl<B1: Clone, B2: Clone> Clone for Stack<B1, B2>[src]

impl<B1: Combinators, B2: Combinators> Combinators for Stack<B1, B2>[src]

impl<B1: Copy, B2: Copy> Copy for Stack<B1, B2>[src]

impl<B1: Debug, B2: Debug> Debug for Stack<B1, B2>[src]

impl<T, B1, B2> EnumerableBasis<T> for Stack<B1, B2> where
    T: Clone,
    B1: EnumerableBasis<T, Value = Features>,
    B2: EnumerableBasis<T, Value = Features>, 
[src]

impl<B1: PartialEq, B2: PartialEq> PartialEq<Stack<B1, B2>> for Stack<B1, B2>[src]

impl<B1: Space, B2: Space> Space for Stack<B1, B2>[src]

type Value = Features

The data representation of the space.

impl<B1, B2> StructuralPartialEq for Stack<B1, B2>[src]

Auto Trait Implementations

impl<B1, B2> RefUnwindSafe for Stack<B1, B2> where
    B1: RefUnwindSafe,
    B2: RefUnwindSafe

impl<B1, B2> Send for Stack<B1, B2> where
    B1: Send,
    B2: Send

impl<B1, B2> Sync for Stack<B1, B2> where
    B1: Sync,
    B2: Sync

impl<B1, B2> Unpin for Stack<B1, B2> where
    B1: Unpin,
    B2: Unpin

impl<B1, B2> UnwindSafe for Stack<B1, B2> where
    B1: UnwindSafe,
    B2: 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.