pub struct MaxOptions {
pub x: i32,
pub y: i32,
pub size: i32,
pub out_array: Vec<f64>,
pub x_array: Vec<i32>,
pub y_array: Vec<i32>,
}
Expand description
Options for max operation
Fields§
§x: i32
x: i32
-> Horizontal position of maximum
min: 0, max: 10000000, default: 0
y: i32
y: i32
-> Vertical position of maximum
min: 0, max: 10000000, default: 0
size: i32
size: i32
-> Number of maximum values to find
min: 1, max: 1000000, default: 10
out_array: Vec<f64>
out_array: Vec<f64>
-> Array of output values
x_array: Vec<i32>
x_array: Vec<i32>
-> Array of horizontal positions
y_array: Vec<i32>
y_array: Vec<i32>
-> Array of vertical positions
Trait Implementations§
Source§impl Clone for MaxOptions
impl Clone for MaxOptions
Source§fn clone(&self) -> MaxOptions
fn clone(&self) -> MaxOptions
Returns a copy 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 moreSource§impl Debug for MaxOptions
impl Debug for MaxOptions
Auto Trait Implementations§
impl Freeze for MaxOptions
impl RefUnwindSafe for MaxOptions
impl Send for MaxOptions
impl Sync for MaxOptions
impl Unpin for MaxOptions
impl UnwindSafe for MaxOptions
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