[][src]Enum libvips::ops::Interpretation

pub enum Interpretation {
    Error,
    Multiband,
    BW,
    Histogram,
    Xyz,
    Lab,
    Cmyk,
    Labq,
    Rgb,
    Cmc,
    Lch,
    Labs,
    Srgb,
    Yxy,
    Fourier,
    Rgb16,
    Grey16,
    Matrix,
    Scrgb,
    Hsv,
    Last,
}

Variants

Error

Error -> VIPS_INTERPRETATION_ERROR = -1

Multiband

Multiband -> VIPS_INTERPRETATION_MULTIBAND = 0

BW

BW -> VIPS_INTERPRETATION_B_W = 1

Histogram

Histogram -> VIPS_INTERPRETATION_HISTOGRAM = 10

Xyz

Xyz -> VIPS_INTERPRETATION_XYZ = 12

Lab

Lab -> VIPS_INTERPRETATION_LAB = 13

Cmyk

Cmyk -> VIPS_INTERPRETATION_CMYK = 15

Labq

Labq -> VIPS_INTERPRETATION_LABQ = 16

Rgb

Rgb -> VIPS_INTERPRETATION_RGB = 17

Cmc

Cmc -> VIPS_INTERPRETATION_CMC = 18

Lch

Lch -> VIPS_INTERPRETATION_LCH = 19

Labs

Lab -> VIPS_INTERPRETATION_LABS = 21

Srgb

Srgb -> VIPS_INTERPRETATION_sRGB = 22

Yxy

Yxy -> VIPS_INTERPRETATION_YXY = 23

Fourier

Fourier -> VIPS_INTERPRETATION_FOURIER = 24

Rgb16

Rgb16 -> VIPS_INTERPRETATION_RGB16 = 25

Grey16

Grey16 -> VIPS_INTERPRETATION_GREY16 = 26

Matrix

Matrix -> VIPS_INTERPRETATION_MATRIX = 27

Scrgb

Scrgb -> VIPS_INTERPRETATION_scRGB = 28

Hsv

Hsv -> VIPS_INTERPRETATION_HSV = 29

Last

Last -> VIPS_INTERPRETATION_LAST = 30

Trait Implementations

impl Clone for Interpretation[src]

impl Copy for Interpretation[src]

impl Debug for Interpretation[src]

impl FromPrimitive for Interpretation[src]

impl ToPrimitive for Interpretation[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.