pub struct NetworkSimplexSolution<F, C> {
pub cost: C,
pub flows: Vec<F>,
pub potentials: Vec<C>,
}Fields§
§cost: C§flows: Vec<F>§potentials: Vec<C>Trait Implementations§
Auto Trait Implementations§
impl<F, C> Freeze for NetworkSimplexSolution<F, C>where
C: Freeze,
impl<F, C> RefUnwindSafe for NetworkSimplexSolution<F, C>where
C: RefUnwindSafe,
F: RefUnwindSafe,
impl<F, C> Send for NetworkSimplexSolution<F, C>
impl<F, C> Sync for NetworkSimplexSolution<F, C>
impl<F, C> Unpin for NetworkSimplexSolution<F, C>
impl<F, C> UnwindSafe for NetworkSimplexSolution<F, C>where
C: UnwindSafe,
F: 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