[][src]Trait lazy_pipe::PipeVal

pub trait PipeVal<'a> {
type Value: 'a;
    fn from_val(val: Self::Value) -> Self;
}

Associated Types

type Value: 'a

Loading content...

Required methods

fn from_val(val: Self::Value) -> Self

Loading content...

Implementors

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

type Value = Value

Loading content...