pub struct vtkAdjacentVertexIterator(/* private fields */);Expand description
Iterates through adjacent vertices in a graph.
vtkAdjacentVertexIterator iterates through all vertices adjacent to a vertex, i.e. the vertices which may be reached by traversing an out edge of the source vertex. Use graph->GetAdjacentVertices(v, it) to initialize the iterator.
Implementations§
Source§impl vtkAdjacentVertexIterator
impl vtkAdjacentVertexIterator
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkAdjacentVertexIterator wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkAdjacentVertexIterator
impl Default for vtkAdjacentVertexIterator
Auto Trait Implementations§
impl Freeze for vtkAdjacentVertexIterator
impl RefUnwindSafe for vtkAdjacentVertexIterator
impl !Send for vtkAdjacentVertexIterator
impl !Sync for vtkAdjacentVertexIterator
impl Unpin for vtkAdjacentVertexIterator
impl UnwindSafe for vtkAdjacentVertexIterator
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