pub struct FeasiblePath {
pub path: Vec<(NodeIndex, Option<EdgeIndex>)>,
}
Expand description
Solution object describing path between source and sink node
Fields§
§path: Vec<(NodeIndex, Option<EdgeIndex>)>
Trait Implementations§
Source§impl Clone for FeasiblePath
impl Clone for FeasiblePath
Source§fn clone(&self) -> FeasiblePath
fn clone(&self) -> FeasiblePath
Returns a duplicate 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 FeasiblePath
impl Debug for FeasiblePath
Source§impl PartialEq for FeasiblePath
impl PartialEq for FeasiblePath
impl StructuralPartialEq for FeasiblePath
Auto Trait Implementations§
impl Freeze for FeasiblePath
impl RefUnwindSafe for FeasiblePath
impl Send for FeasiblePath
impl Sync for FeasiblePath
impl Unpin for FeasiblePath
impl UnwindSafe for FeasiblePath
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