[][src]Trait parze::chain::Chain

pub trait Chain<N> {
    type Chained;
    fn chain(self, next: N) -> Self::Chained;
}

Associated Types

type Chained

Loading content...

Required methods

fn chain(self, next: N) -> Self::Chained

Loading content...

Implementations on Foreign Types

impl<T> Chain<T> for Vec<T>[src]

type Chained = Vec<T>

impl<T> Chain<Vec<T>> for Vec<T>[src]

type Chained = Vec<T>

Loading content...

Implementors

impl<T> Chain<Vec<T>> for T[src]

type Chained = Vec<T>

Loading content...