pub struct vtkVertexListIterator(/* private fields */);Expand description
Iterates all vertices in a graph.
vtkVertexListIterator iterates through all vertices in a graph. Create an instance of this and call graph->GetVertices(it) to initialize this iterator. You may alternately call SetGraph() to initialize the iterator.
@sa vtkGraph
Implementations§
Source§impl vtkVertexListIterator
impl vtkVertexListIterator
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkVertexListIterator wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkVertexListIterator
impl Default for vtkVertexListIterator
Auto Trait Implementations§
impl Freeze for vtkVertexListIterator
impl RefUnwindSafe for vtkVertexListIterator
impl !Send for vtkVertexListIterator
impl !Sync for vtkVertexListIterator
impl Unpin for vtkVertexListIterator
impl UnwindSafe for vtkVertexListIterator
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