[][src]Trait lazy_pipe::PipeMap

pub trait PipeMap<'a> {
type Value: 'a;
    fn map<Next: 'a>(
        self,
        func: impl 'a + FnOnce(Self::Value) -> Next
    ) -> PipeBox<'a, Next>; }

Associated Types

type Value: 'a

Loading content...

Required methods

fn map<Next: 'a>(
    self,
    func: impl 'a + FnOnce(Self::Value) -> Next
) -> PipeBox<'a, Next>

Loading content...

Implementors

impl<'a, Value: 'a> PipeMap<'a> for PipeBox<'a, Value>[src]

type Value = Value

Loading content...