pub struct vtkInEdgeIterator(/* private fields */);Expand description
Iterates through all incoming edges to a vertex.
vtkInEdgeIterator iterates through all edges whose target is a particular vertex. Instantiate this class directly and call Initialize() to traverse the vertex of a graph. Alternately, use GetInEdges() on the graph to initialize the iterator. it->Next() returns a vtkInEdgeType structure, which contains Id, the edge’s id, and Source, the edge’s source vertex.
@sa vtkGraph vtkOutEdgeIterator
Implementations§
Source§impl vtkInEdgeIterator
impl vtkInEdgeIterator
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkInEdgeIterator wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkInEdgeIterator
impl Default for vtkInEdgeIterator
Auto Trait Implementations§
impl Freeze for vtkInEdgeIterator
impl RefUnwindSafe for vtkInEdgeIterator
impl !Send for vtkInEdgeIterator
impl !Sync for vtkInEdgeIterator
impl Unpin for vtkInEdgeIterator
impl UnwindSafe for vtkInEdgeIterator
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