pub struct SccGraphNode<Node: ComputeScc>(/* private fields */);
Expand description
A node whose neighbors are only the subset of its neighbors in the full graph, which are also in the same SCC (strongly-connected-component) with it.
Trait Implementations§
source§impl<Node: Clone + ComputeScc> Clone for SccGraphNode<Node>
impl<Node: Clone + ComputeScc> Clone for SccGraphNode<Node>
source§fn clone(&self) -> SccGraphNode<Node>
fn clone(&self) -> SccGraphNode<Node>
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<Node: ComputeScc> From<Node> for SccGraphNode<Node>
impl<Node: ComputeScc> From<Node> for SccGraphNode<Node>
source§impl<Node: ComputeScc> GraphNode for SccGraphNode<Node>
impl<Node: ComputeScc> GraphNode for SccGraphNode<Node>
source§fn get_neighbors(&self) -> Vec<Self>
fn get_neighbors(&self) -> Vec<Self>
Returns a list of the node’s neighbors.
Must be stable for the SCC result to be stable. i.e. if the output for a node here doesn’t
change between different runs, the computed SCC of the node is guaranteed to also not
change.
Auto Trait Implementations§
impl<Node> Freeze for SccGraphNode<Node>where
Node: Freeze,
impl<Node> RefUnwindSafe for SccGraphNode<Node>where
Node: RefUnwindSafe,
impl<Node> Send for SccGraphNode<Node>where
Node: Send,
impl<Node> Sync for SccGraphNode<Node>where
Node: Sync,
impl<Node> Unpin for SccGraphNode<Node>where
Node: Unpin,
impl<Node> UnwindSafe for SccGraphNode<Node>where
Node: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more