Struct petgraph::algo::NegativeCycle
source · pub struct NegativeCycle(pub ());
Expand description
An algorithm error: a cycle of negative weights was found in the graph.
Tuple Fields§
§0: ()
Trait Implementations§
source§impl Clone for NegativeCycle
impl Clone for NegativeCycle
source§fn clone(&self) -> NegativeCycle
fn clone(&self) -> NegativeCycle
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 Debug for NegativeCycle
impl Debug for NegativeCycle
source§impl PartialEq<NegativeCycle> for NegativeCycle
impl PartialEq<NegativeCycle> for NegativeCycle
source§fn eq(&self, other: &NegativeCycle) -> bool
fn eq(&self, other: &NegativeCycle) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NegativeCycle
Auto Trait Implementations§
impl RefUnwindSafe for NegativeCycle
impl Send for NegativeCycle
impl Sync for NegativeCycle
impl Unpin for NegativeCycle
impl UnwindSafe for NegativeCycle
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