[][src]Enum libvips::ops::Intent

pub enum Intent {
    Perceptual,
    Relative,
    Saturation,
    Absolute,
    Last,
}

Variants

Perceptual

Perceptual -> VIPS_INTENT_PERCEPTUAL = 0

Relative

Relative -> VIPS_INTENT_RELATIVE = 1

Saturation

Saturation -> VIPS_INTENT_SATURATION = 2

Absolute

Absolute -> VIPS_INTENT_ABSOLUTE = 3

Last

Last -> VIPS_INTENT_LAST = 4

Trait Implementations

impl Clone for Intent[src]

impl Copy for Intent[src]

impl Debug for Intent[src]

impl FromPrimitive for Intent[src]

Auto Trait Implementations

impl RefUnwindSafe for Intent

impl Send for Intent

impl Sync for Intent

impl Unpin for Intent

impl UnwindSafe for Intent

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.