Enum usvg::FeCompositeOperator[][src]

pub enum FeCompositeOperator {
    Over,
    In,
    Out,
    Atop,
    Xor,
    Arithmetic {
        k1: f64,
        k2: f64,
        k3: f64,
        k4: f64,
    },
}

An images compositing operation.

Variants

Over
In
Out
Atop
Xor
Arithmetic

Fields of Arithmetic

k1: f64k2: f64k3: f64k4: f64

Trait Implementations

impl Clone for FeCompositeOperator[src]

impl Copy for FeCompositeOperator[src]

impl Debug for FeCompositeOperator[src]

impl PartialEq<FeCompositeOperator> for FeCompositeOperator[src]

impl StructuralPartialEq for FeCompositeOperator[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.