pub struct Extremum {
pub row: usize,
pub column: usize,
pub value: f64,
pub kind: ExtremumKind,
}Expand description
One strict local extremum in target-grid coordinates.
Fields§
§row: usizeZero-based target row.
column: usizeZero-based target column.
value: f64Projected scalar value at this cell.
kind: ExtremumKindNode or antinode interpretation.
Trait Implementations§
impl Copy for Extremum
impl StructuralPartialEq for Extremum
Auto Trait Implementations§
impl Freeze for Extremum
impl RefUnwindSafe for Extremum
impl Send for Extremum
impl Sync for Extremum
impl Unpin for Extremum
impl UnsafeUnpin for Extremum
impl UnwindSafe for Extremum
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