pub struct FlowEdge {
pub from: usize,
pub to: usize,
pub capacity: f64,
pub flow: f64,
}Expand description
Edge in the flow graph
Fields§
§from: usize§to: usize§capacity: f64§flow: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlowEdge
impl RefUnwindSafe for FlowEdge
impl Send for FlowEdge
impl Sync for FlowEdge
impl Unpin for FlowEdge
impl UnsafeUnpin for FlowEdge
impl UnwindSafe for FlowEdge
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