Trait chain_intoiter::Chain

source ·
pub trait Chainwhere
    Self: IntoIterator + Copy,
{ fn chain<B>(self, b: B) -> ChainIntoIter<Self, B>
    where
        B: IntoIterator<Item = Self::Item> + Copy
; }

Required Methods

Implementors