Skip to main content

Cloned

Trait Cloned 

Source
pub trait Cloned<'a, T, S>
where S: Stream<Item = &'a T>, T: Clone + 'a,
{ // Required method fn cloned(self) -> Map<S, fn(&T) -> T>; }

Required Methods§

Source

fn cloned(self) -> Map<S, fn(&T) -> T>

Implementors§

Source§

impl<'a, T, S> Cloned<'a, T, S> for S
where S: Stream<Item = &'a T>, T: Clone + 'a,