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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a, I, N, E, Ty, Ix> Freeze for BreadthFirst<'a, I, N, E, Ty, Ix>where
Ix: Freeze,
impl<'a, I, N, E, Ty, Ix> RefUnwindSafe for BreadthFirst<'a, I, N, E, Ty, Ix>
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
Ix: UnwindSafe + RefUnwindSafe,
Ty: RefUnwindSafe,
N: RefUnwindSafe,
E: RefUnwindSafe,
I: 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