pub struct StoerWagnerCut<Node, Weight> { /* private fields */ }Expand description
A deterministic global minimum cut and both sides of its partition.
Implementations§
Trait Implementations§
Source§impl<Node: Clone, Weight: Clone> Clone for StoerWagnerCut<Node, Weight>
impl<Node: Clone, Weight: Clone> Clone for StoerWagnerCut<Node, Weight>
Source§fn clone(&self) -> StoerWagnerCut<Node, Weight>
fn clone(&self) -> StoerWagnerCut<Node, Weight>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<Node: PartialEq, Weight: PartialEq> StructuralPartialEq for StoerWagnerCut<Node, Weight>
Auto Trait Implementations§
impl<Node, Weight> Freeze for StoerWagnerCut<Node, Weight>where
Weight: Freeze,
impl<Node, Weight> RefUnwindSafe for StoerWagnerCut<Node, Weight>where
Weight: RefUnwindSafe,
Node: RefUnwindSafe,
impl<Node, Weight> Send for StoerWagnerCut<Node, Weight>
impl<Node, Weight> Sync for StoerWagnerCut<Node, Weight>
impl<Node, Weight> Unpin for StoerWagnerCut<Node, Weight>
impl<Node, Weight> UnsafeUnpin for StoerWagnerCut<Node, Weight>where
Weight: UnsafeUnpin,
impl<Node, Weight> UnwindSafe for StoerWagnerCut<Node, Weight>where
Weight: UnwindSafe,
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