BatchBindCtx

Trait BatchBindCtx 

Source
pub trait BatchBindCtx {
    // Required method
    fn child(&mut self, idx: usize) -> VortexResult<BatchExecutionRef>;
}

Required Methods§

Source

fn child(&mut self, idx: usize) -> VortexResult<BatchExecutionRef>

Returns the execution for the child at the given index, consuming it from the context. Each child may be consumed only once.

Implementations on Foreign Types§

Source§

impl BatchBindCtx for Vec<Option<BatchExecutionRef>>

Implementors§