pub struct AdjacencyListGraphScanner<U: IterScan<Output = usize>, T: IterScan> {
vsize: usize,
esize: usize,
directed: bool,
_marker: PhantomData<fn() -> (U, T)>,
}Fields§
§vsize: usize§esize: usize§directed: bool§_marker: PhantomData<fn() -> (U, T)>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<U, T> Freeze for AdjacencyListGraphScanner<U, T>
impl<U, T> RefUnwindSafe for AdjacencyListGraphScanner<U, T>
impl<U, T> Send for AdjacencyListGraphScanner<U, T>
impl<U, T> Sync for AdjacencyListGraphScanner<U, T>
impl<U, T> Unpin for AdjacencyListGraphScanner<U, T>
impl<U, T> UnwindSafe for AdjacencyListGraphScanner<U, T>
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