pub struct MinCostFlowResult {
pub flow: i64,
pub cost: Cost,
pub edge_flows: Vec<i64>,
pub status: SolverStatus,
pub stats: SolverStats,
}Expand description
Result of min cost flow computation
Fields§
§flow: i64Total flow sent
cost: CostTotal cost
edge_flows: Vec<i64>Flow on each original edge
status: SolverStatusSolver status
stats: SolverStatsStatistics
Trait Implementations§
Source§impl Clone for MinCostFlowResult
impl Clone for MinCostFlowResult
Source§fn clone(&self) -> MinCostFlowResult
fn clone(&self) -> MinCostFlowResult
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 moreAuto Trait Implementations§
impl Freeze for MinCostFlowResult
impl RefUnwindSafe for MinCostFlowResult
impl Send for MinCostFlowResult
impl Sync for MinCostFlowResult
impl Unpin for MinCostFlowResult
impl UnsafeUnpin for MinCostFlowResult
impl UnwindSafe for MinCostFlowResult
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