[][src]Struct libvips::ops::MinOptions

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>,
}

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

impl Clone for MinOptions[src]

impl Debug for MinOptions[src]

impl Default for MinOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.