[][src]Enum libvips::ops::OperationMath

pub enum OperationMath {
    Sin,
    Co,
    Tan,
    Asin,
    Aco,
    Atan,
    Log,
    Log10,
    Exp,
    Exp10,
    Last,
}

Variants

Sin

Sin -> VIPS_OPERATION_MATH_SIN = 0

Co

Co -> VIPS_OPERATION_MATH_COS = 1

Tan

Tan -> VIPS_OPERATION_MATH_TAN = 2

Asin

Asin -> VIPS_OPERATION_MATH_ASIN = 3

Aco

Aco -> VIPS_OPERATION_MATH_ACOS = 4

Atan

Atan -> VIPS_OPERATION_MATH_ATAN = 5

Log

Log -> VIPS_OPERATION_MATH_LOG = 6

Log10

Log10 -> VIPS_OPERATION_MATH_LOG10 = 7

Exp

Exp -> VIPS_OPERATION_MATH_EXP = 8

Exp10

Exp10 -> VIPS_OPERATION_MATH_EXP10 = 9

Last

Last -> VIPS_OPERATION_MATH_LAST = 10

Trait Implementations

impl Clone for OperationMath[src]

impl Copy for OperationMath[src]

impl Debug for OperationMath[src]

impl FromPrimitive for OperationMath[src]

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