pub struct MinCut {
pub value: f64,
pub source_side: Vec<usize>,
pub cut_edges: Vec<(usize, usize, f64)>,
}Fields§
§value: f64§source_side: Vec<usize>§cut_edges: Vec<(usize, usize, f64)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for MinCut
impl RefUnwindSafe for MinCut
impl Send for MinCut
impl Sync for MinCut
impl Unpin for MinCut
impl UnsafeUnpin for MinCut
impl UnwindSafe for MinCut
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