Struct graph::walkers::breadth::BreadthFirst
source · pub struct BreadthFirst<'a, I, N, E, Ty, Ix> {
pub direction: Direction,
/* private fields */
}
Fields§
§direction: Direction
Implementations§
Trait Implementations§
source§impl<'a, I: Clone, N: Clone, E: Clone, Ty: Clone, Ix: Clone> Clone for BreadthFirst<'a, I, N, E, Ty, Ix>
impl<'a, I: Clone, N: Clone, E: Clone, Ty: Clone, Ix: Clone> Clone for BreadthFirst<'a, I, N, E, Ty, Ix>
source§fn clone(&self) -> BreadthFirst<'a, I, N, E, Ty, Ix>
fn clone(&self) -> BreadthFirst<'a, I, N, E, Ty, Ix>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a, I, N, E, Ty: EdgeType, Ix: IndexType> Walker<Ix> for BreadthFirst<'a, I, N, E, Ty, Ix>
impl<'a, I, N, E, Ty: EdgeType, Ix: IndexType> Walker<Ix> for BreadthFirst<'a, I, N, E, Ty, Ix>
fn step(&mut self) -> WalkerState<Ix>
Auto Trait Implementations§
impl<'a, I, N, E, Ty, Ix> RefUnwindSafe for BreadthFirst<'a, I, N, E, Ty, Ix>where E: RefUnwindSafe, I: RefUnwindSafe, Ix: RefUnwindSafe, N: RefUnwindSafe, Ty: RefUnwindSafe,
impl<'a, I, N, E, Ty, Ix> !Send for BreadthFirst<'a, I, N, E, Ty, Ix>
impl<'a, I, N, E, Ty, Ix> !Sync for BreadthFirst<'a, I, N, E, Ty, Ix>
impl<'a, I, N, E, Ty, Ix> Unpin for BreadthFirst<'a, I, N, E, Ty, Ix>where Ix: Unpin,
impl<'a, I, N, E, Ty, Ix> UnwindSafe for BreadthFirst<'a, I, N, E, Ty, Ix>where E: RefUnwindSafe, I: RefUnwindSafe, Ix: UnwindSafe + RefUnwindSafe, N: RefUnwindSafe, Ty: RefUnwindSafe,
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