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
sourceimpl Clone for NegativeCycle
impl Clone for NegativeCycle
sourcefn clone(&self) -> NegativeCycle
fn clone(&self) -> NegativeCycle
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for NegativeCycle
impl Debug for NegativeCycle
sourceimpl PartialEq<NegativeCycle> for NegativeCycle
impl PartialEq<NegativeCycle> for NegativeCycle
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &NegativeCycle) -> bool
fn ne(&self, other: &NegativeCycle) -> bool
This method tests for !=
.
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
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more