pub struct TimedMaxFlowResult {
pub result: MaxFlowResult,
pub timing: PhaseTiming,
}Expand description
Result with timing breakdown.
Fields§
§result: MaxFlowResultStandard max flow result
timing: PhaseTimingPer-phase timing breakdown
Trait Implementations§
Source§impl Clone for TimedMaxFlowResult
impl Clone for TimedMaxFlowResult
Source§fn clone(&self) -> TimedMaxFlowResult
fn clone(&self) -> TimedMaxFlowResult
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 TimedMaxFlowResult
impl RefUnwindSafe for TimedMaxFlowResult
impl Send for TimedMaxFlowResult
impl Sync for TimedMaxFlowResult
impl Unpin for TimedMaxFlowResult
impl UnsafeUnpin for TimedMaxFlowResult
impl UnwindSafe for TimedMaxFlowResult
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