pub struct vtkEndFor(/* private fields */);Expand description
vtkEndFor define the end of the sub-pipeline to loop
vtkEndFor works together with vtkForEach. It marks the end of the loop.
Its goals is to use the given vtkExecutionAggregator to process the result
of each iteration and provide an output dataset.
The default aggregator is vtkAggregateToPartitionedDataSetCollection, which build a vtkPartitionedDataSetCollection with each result in a separate partition.
Largely inspired by the ttkForEach/ttkEndFor in the TTK project (https://github.com/topology-tool-kit/ttk/tree/dev)
@sa vtkForEach, vtkExecutionAggregator
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for vtkEndFor
impl RefUnwindSafe for vtkEndFor
impl !Send for vtkEndFor
impl !Sync for vtkEndFor
impl Unpin for vtkEndFor
impl UnwindSafe for vtkEndFor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more