1
2
3
pub struct PipeBox<'a, Value: 'a> {
    pub(crate) func: Box<'a + FnOnce() -> Value>,
}