[][src]Trait parze::chain::IntoChain

pub trait IntoChain {
    type Item;
    type Chain: Chain<Item = Self::Item>;
    fn into_chain(self) -> Self::Chain;
}

Associated Types

type Item

type Chain: Chain<Item = Self::Item>

Loading content...

Required methods

fn into_chain(self) -> Self::Chain

Loading content...

Implementations on Foreign Types

impl<T> IntoChain for Option<T>[src]

type Item = T

type Chain = OptionChain<T>

Loading content...

Implementors

impl<U: Chain> IntoChain for U[src]

type Item = U::Item

type Chain = Self

Loading content...