pub struct NodesByLevel<'a, T> {
pub visited: HashSet<NodeIndex>,
pub nodes_by_level: HashMap<i32, HashSet<&'a T>>,
}Fields
visited: HashSet<NodeIndex>nodes_by_level: HashMap<i32, HashSet<&'a T>>Implementations
Trait Implementations
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for NodesByLevel<'a, T> where
T: RefUnwindSafe,
impl<'a, T> Send for NodesByLevel<'a, T> where
T: Sync,
impl<'a, T> Sync for NodesByLevel<'a, T> where
T: Sync,
impl<'a, T> Unpin for NodesByLevel<'a, T>
impl<'a, T> UnwindSafe for NodesByLevel<'a, T> where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more