[][src]Enum azul_webrender_api::CompositeOperator

#[repr(C)]pub enum CompositeOperator {
    Over,
    In,
    Atop,
    Out,
    Xor,
    Lighter,
    Arithmetic([f32; 4]),
}

Available composite operoations for the composite filter primitive

Variants

Over
In
Atop
Out
Xor
Lighter
Arithmetic([f32; 4])

Implementations

impl CompositeOperator[src]

pub fn as_int(&self) -> u32[src]

Trait Implementations

impl Clone for CompositeOperator[src]

impl Copy for CompositeOperator[src]

impl Debug for CompositeOperator[src]

impl Default for CompositeOperator[src]

impl<'de> Deserialize<'de> for CompositeOperator[src]

impl MallocSizeOf for CompositeOperator[src]

impl PartialEq<CompositeOperator> for CompositeOperator[src]

impl Peek for CompositeOperator[src]

impl Poke for CompositeOperator[src]

impl Serialize for CompositeOperator[src]

impl StructuralPartialEq for CompositeOperator[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.