[][src]Trait lazy_pipe::PipeFunc

pub trait PipeFunc<'a> {
type Value: 'a;
    fn from_func(func: impl 'a + FnOnce() -> Self::Value) -> Self;
}

Associated Types

type Value: 'a

Loading content...

Required methods

fn from_func(func: impl 'a + FnOnce() -> Self::Value) -> Self

Loading content...

Implementors

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

type Value = Value

Loading content...