Struct palette::encoding::linear::Linear[][src]

pub struct Linear<S>(_);

A generic standard with linear components.

Trait Implementations

impl<S: Clone> Clone for Linear<S>[src]

impl<S: Debug> Debug for Linear<S>[src]

impl<Wp: WhitePoint> LumaStandard for Linear<Wp>[src]

type WhitePoint = Wp

The white point of the color space.

type TransferFn = LinearFn

The transfer function for the luminance component.

impl<S: PartialEq> PartialEq<Linear<S>> for Linear<S>[src]

impl<S: RgbSpace> RgbStandard for Linear<S>[src]

type Space = S

The RGB color space.

type TransferFn = LinearFn

The transfer function for the color components.

impl<S: Copy> Copy for Linear<S>[src]

impl<S: Eq> Eq for Linear<S>[src]

impl<S> StructuralEq for Linear<S>[src]

impl<S> StructuralPartialEq for Linear<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for Linear<S> where
    S: RefUnwindSafe

impl<S> Send for Linear<S> where
    S: Send

impl<S> Sync for Linear<S> where
    S: Sync

impl<S> Unpin for Linear<S> where
    S: Unpin

impl<S> UnwindSafe for Linear<S> where
    S: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: FloatComponent,
    Swp: WhitePoint,
    Dwp: WhitePoint,
    D: AdaptFrom<S, Swp, Dwp, T>, 
[src]

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, U> IntoColor<U> for T where
    U: FromColor<T>, 
[src]

impl<T, U> IntoColorUnclamped<U> for T where
    U: FromColorUnclamped<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.

impl<T, U> TryIntoColor<U> for T where
    U: TryFromColor<T>, 
[src]