[][src]Struct colours::Rgb

pub struct Rgb<T> {
    pub red: T,
    pub green: T,
    pub blue: T,
}

Fields

red: Tgreen: Tblue: T

Methods

impl<T> Rgb<T>[src]

pub fn new(red: T, green: T, blue: T) -> Self[src]

Trait Implementations

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

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

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

impl<T: IsColorChannel> Default for Rgb<T>[src]

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

impl From<Hsl<f32>> for Rgb<f32>[src]

impl From<Hsv<f32>> for Rgb<f32>[src]

impl<T: IsColorChannel> From<Rgb<T>> for Rgba<T>[src]

impl From<Rgb<f32>> for Rgb<u8>[src]

impl From<Rgb<f32>> for Hsl<f32>[src]

impl From<Rgb<f32>> for Hsv<f32>[src]

impl From<Rgb<u8>> for Rgb<f32>[src]

impl<T: IsColorChannel> From<Rgba<T>> for Rgb<T>[src]

impl<T: IsColorChannel> HasntAlpha for Rgb<T>[src]

type Alphaful = Rgba<T>

impl<T: IsColorChannel> IsColor for Rgb<T>[src]

type Channel = T

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

impl<T> StructuralEq for Rgb<T>[src]

impl<T> StructuralPartialEq for Rgb<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Rgb<T> where
    T: RefUnwindSafe

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

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

impl<T> Unpin for Rgb<T> where
    T: Unpin

impl<T> UnwindSafe for Rgb<T> where
    T: UnwindSafe

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.