[][src]Enum libvips::ops::Kernel

pub enum Kernel {
    Nearest,
    Linear,
    Cubic,
    Mitchell,
    Lanczos2,
    Lanczos3,
    Last,
}

Variants

Nearest

Nearest -> VIPS_KERNEL_NEAREST = 0

Linear

Linear -> VIPS_KERNEL_LINEAR = 1

Cubic

Cubic -> VIPS_KERNEL_CUBIC = 2

Mitchell

Mitchell -> VIPS_KERNEL_MITCHELL = 3

Lanczos2

Lanczos2 -> VIPS_KERNEL_LANCZOS2 = 4

Lanczos3

Lanczos3 -> VIPS_KERNEL_LANCZOS3 = 5

Last

Last -> VIPS_KERNEL_LAST = 6

Trait Implementations

impl Clone for Kernel[src]

impl Copy for Kernel[src]

impl Debug for Kernel[src]

impl FromPrimitive for Kernel[src]

impl ToPrimitive for Kernel[src]

Auto Trait Implementations

impl RefUnwindSafe for Kernel

impl Send for Kernel

impl Sync for Kernel

impl Unpin for Kernel

impl UnwindSafe for Kernel

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.