Struct color::YCbCr[][src]

pub struct YCbCr<T> {
    pub y: T,
    pub cb: T,
    pub cr: T,
}

Fields

Methods

impl<T> YCbCr<T>
[src]

Trait Implementations

impl<T: Clone> Clone for YCbCr<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for YCbCr<T>
[src]

impl<T: PartialEq> PartialEq for YCbCr<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Eq> Eq for YCbCr<T>
[src]

impl<T: Debug> Debug for YCbCr<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for YCbCr<T> where
    T: Send

impl<T> Sync for YCbCr<T> where
    T: Sync