pub struct ParametricBreakpoint {
pub lambda: f64,
pub source_set: Vec<usize>,
}Expand description
A lambda value at which the optimal minimal min-cut source side changes.
Fields§
§lambda: f64Parameter value of the transition.
source_set: Vec<usize>Minimal source side that is optimal immediately above this breakpoint (until the next breakpoint), sorted ascending.
Trait Implementations§
Source§impl Clone for ParametricBreakpoint
impl Clone for ParametricBreakpoint
Source§fn clone(&self) -> ParametricBreakpoint
fn clone(&self) -> ParametricBreakpoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParametricBreakpoint
impl Debug for ParametricBreakpoint
Source§impl PartialEq for ParametricBreakpoint
impl PartialEq for ParametricBreakpoint
Source§fn eq(&self, other: &ParametricBreakpoint) -> bool
fn eq(&self, other: &ParametricBreakpoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParametricBreakpoint
Auto Trait Implementations§
impl Freeze for ParametricBreakpoint
impl RefUnwindSafe for ParametricBreakpoint
impl Send for ParametricBreakpoint
impl Sync for ParametricBreakpoint
impl Unpin for ParametricBreakpoint
impl UnsafeUnpin for ParametricBreakpoint
impl UnwindSafe for ParametricBreakpoint
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