[][src]Struct libvips::ops::RotateOptions

pub struct RotateOptions {
    pub interpolate: VipsInterpolate,
    pub background: Vec<f64>,
    pub odx: f64,
    pub ody: f64,
    pub idx: f64,
    pub idy: f64,
}

Options for rotate operation

Fields

interpolate: VipsInterpolate

interpolate: VipsInterpolate -> Interpolate pixels with this

background: Vec<f64>

background: Vec<f64> -> Background value

odx: f64

odx: f64 -> Horizontal output displacement min: -10000000, max: 10000000, default: 0

ody: f64

ody: f64 -> Vertical output displacement min: -10000000, max: 10000000, default: 0

idx: f64

idx: f64 -> Horizontal input displacement min: -10000000, max: 10000000, default: 0

idy: f64

idy: f64 -> Vertical input displacement min: -10000000, max: 10000000, default: 0

Trait Implementations

impl Clone for RotateOptions[src]

impl Debug for RotateOptions[src]

impl Default for RotateOptions[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.