pub struct MinimaResult {
pub indices: Vec<usize>,
pub values: Vec<f64>,
}Expand description
Result of finding local minima.
Fields§
§indices: Vec<usize>§values: Vec<f64>Trait Implementations§
Source§impl Clone for MinimaResult
impl Clone for MinimaResult
Source§fn clone(&self) -> MinimaResult
fn clone(&self) -> MinimaResult
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 MinimaResult
impl RefUnwindSafe for MinimaResult
impl Send for MinimaResult
impl Sync for MinimaResult
impl Unpin for MinimaResult
impl UnwindSafe for MinimaResult
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