pub struct MinOptions {
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 min operation
Fields§
§x: i32
x: i32
-> Horizontal position of minimum
min: 0, max: 10000000, default: 0
y: i32
y: i32
-> Vertical position of minimum
min: 0, max: 10000000, default: 0
size: i32
size: i32
-> Number of minimum 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 MinOptions
impl Clone for MinOptions
Source§fn clone(&self) -> MinOptions
fn clone(&self) -> MinOptions
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 MinOptions
impl Debug for MinOptions
Auto Trait Implementations§
impl Freeze for MinOptions
impl RefUnwindSafe for MinOptions
impl Send for MinOptions
impl Sync for MinOptions
impl Unpin for MinOptions
impl UnwindSafe for MinOptions
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