[][src]Enum libvips::ops::Extend

pub enum Extend {
    Black,
    Copy,
    Repeat,
    Mirror,
    White,
    Background,
    Last,
}

Variants

Black

Black -> VIPS_EXTEND_BLACK = 0

Copy

Copy -> VIPS_EXTEND_COPY = 1

Repeat

Repeat -> VIPS_EXTEND_REPEAT = 2

Mirror

Mirror -> VIPS_EXTEND_MIRROR = 3

White

White -> VIPS_EXTEND_WHITE = 4

Background

Background -> VIPS_EXTEND_BACKGROUND = 5

Last

Last -> VIPS_EXTEND_LAST = 6

Trait Implementations

impl Clone for Extend[src]

impl Copy for Extend[src]

impl Debug for Extend[src]

impl FromPrimitive for Extend[src]

impl ToPrimitive for Extend[src]

Auto Trait Implementations

impl RefUnwindSafe for Extend

impl Send for Extend

impl Sync for Extend

impl Unpin for Extend

impl UnwindSafe for Extend

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.