Trait capnp::private::capability::PipelineHook[][src]

pub trait PipelineHook {
    fn add_ref(&self) -> Box<dyn PipelineHook>;
fn get_pipelined_cap(&self, ops: &[PipelineOp]) -> Box<dyn ClientHook>; fn get_pipelined_cap_move(
        &self,
        ops: Vec<PipelineOp>
    ) -> Box<dyn ClientHook> { ... } }

Required methods

Loading content...

Provided methods

fn get_pipelined_cap_move(&self, ops: Vec<PipelineOp>) -> Box<dyn ClientHook>[src]

Version of get_pipelined_cap() passing the array by move. May avoid a copy in some cases. Default implementation just calls the other version.

Loading content...

Implementors

Loading content...