[][src]Trait lazy_pipe::PipeUnwrap

pub trait PipeUnwrap {
type Value;
    fn unwrap(self) -> Self::Value;

    fn get(self) -> Self::Value { ... }
}

This trait provides unwrap method and its get alias

Associated Types

type Value

Loading content...

Required methods

fn unwrap(self) -> Self::Value

Execute the pipeline and get the value

Loading content...

Provided methods

fn get(self) -> Self::Value

Alias to unwrap

Loading content...

Implementors

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

type Value = Value

fn get(self) -> Self::Value[src]

Loading content...