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

Provided Methods

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Implementors