pub trait BatchBindCtx {
// Required method
fn child(&mut self, idx: usize) -> VortexResult<BatchExecutionRef>;
}
Required Methods§
Sourcefn child(&mut self, idx: usize) -> VortexResult<BatchExecutionRef>
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.