[][src]Struct swf_types::ColorTransform

pub struct ColorTransform {
    pub red_mult: Sfixed8P8,
    pub green_mult: Sfixed8P8,
    pub blue_mult: Sfixed8P8,
    pub red_add: i16,
    pub green_add: i16,
    pub blue_add: i16,
}

Fields

red_mult: Sfixed8P8green_mult: Sfixed8P8blue_mult: Sfixed8P8red_add: i16green_add: i16blue_add: i16

Trait Implementations

impl Clone for ColorTransform[src]

impl Copy for ColorTransform[src]

impl Debug for ColorTransform[src]

impl Default for ColorTransform[src]

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

impl Eq for ColorTransform[src]

impl Hash for ColorTransform[src]

impl Ord for ColorTransform[src]

impl PartialEq<ColorTransform> for ColorTransform[src]

impl PartialOrd<ColorTransform> for ColorTransform[src]

impl Serialize for ColorTransform[src]

impl StructuralEq for ColorTransform[src]

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