[][src]Struct nanachi::pixel::Rgba

pub struct Rgba(pub [f32; 4]);

RGBA color

Trait Implementations

impl Add<Rgba> for Rgba[src]

type Output = Self

The resulting type after applying the + operator.

impl Arithmetic for Rgba[src]

impl Clone for Rgba[src]

impl Compositor<Rgba> for Clear[src]

impl Compositor<Rgba> for Src[src]

impl Compositor<Rgba> for DstAtop[src]

impl Compositor<Rgba> for Xor[src]

impl Compositor<Rgba> for Add[src]

impl Compositor<Rgba> for Darken[src]

impl Compositor<Rgba> for Lighten[src]

impl Compositor<Rgba> for Multiply[src]

impl Compositor<Rgba> for Screen[src]

impl Compositor<Rgba> for Overlay[src]

impl Compositor<Rgba> for HardLight[src]

impl Compositor<Rgba> for Dodge[src]

impl Compositor<Rgba> for Dst[src]

impl Compositor<Rgba> for Burn[src]

impl Compositor<Rgba> for SoftLight[src]

impl Compositor<Rgba> for Difference[src]

impl Compositor<Rgba> for Exclusion[src]

impl Compositor<Rgba> for Basic[src]

impl Compositor<Rgba> for Perf[src]

impl Compositor<Rgba> for SrcOver[src]

impl Compositor<Rgba> for SrcIn[src]

impl Compositor<Rgba> for SrcOut[src]

impl Compositor<Rgba> for SrcAtop[src]

impl Compositor<Rgba> for DstOver[src]

impl Compositor<Rgba> for DstIn[src]

impl Compositor<Rgba> for DstOut[src]

impl Copy for Rgba[src]

impl Into<PremultipliedRgba> for Rgba[src]

impl Into<Rgba> for PremultipliedRgba[src]

impl Mul<Rgba> for Rgba[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<f32> for Rgba[src]

type Output = Self

The resulting type after applying the * operator.

impl Pixel for Rgba[src]

impl Sub<Rgba> for Rgba[src]

type Output = Self

The resulting type after applying the - operator.

Auto Trait Implementations

impl RefUnwindSafe for Rgba

impl Send for Rgba

impl Sync for Rgba

impl Unpin for Rgba

impl UnwindSafe for Rgba

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> SetParameter for T

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.