[][src]Enum libvips::ops::BandFormat

pub enum BandFormat {
    Notset,
    Uchar,
    Char,
    Ushort,
    Short,
    Uint,
    Int,
    Float,
    Complex,
    Double,
    Dpcomplex,
    Last,
}

Variants

Notset

Notset -> VIPS_FORMAT_NOTSET = -1

Uchar

Uchar -> VIPS_FORMAT_UCHAR = 0

Char

Char -> VIPS_FORMAT_CHAR = 1

Ushort

Ushort -> VIPS_FORMAT_USHORT = 2

Short

Short -> VIPS_FORMAT_SHORT = 3

Uint

Uint -> VIPS_FORMAT_UINT = 4

Int

Int -> VIPS_FORMAT_INT = 5

Float

Float -> VIPS_FORMAT_FLOAT = 6

Complex

Complex -> VIPS_FORMAT_COMPLEX = 7

Double

Double -> VIPS_FORMAT_DOUBLE = 8

Dpcomplex

Dpcomplex -> VIPS_FORMAT_DPCOMPLEX = 9

Last

Last -> VIPS_FORMAT_LAST = 10

Trait Implementations

impl Clone for BandFormat[src]

impl Copy for BandFormat[src]

impl Debug for BandFormat[src]

impl FromPrimitive for BandFormat[src]

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