[][src]Struct rgb::alt::Gray

#[repr(C)]
pub struct Gray<ComponentType>(pub ComponentType);

Grayscale. Use .0 or * (deref) to access the value.

Trait Implementations

impl<T> AsPixels<Gray<T>> for [T][src]

impl<T> ComponentSlice<T> for Gray<T>[src]

impl<T> Deref for Gray<T>[src]

type Target = T

The resulting type after dereferencing.

impl<ComponentType: PartialEq> PartialEq<Gray<ComponentType>> for Gray<ComponentType>[src]

impl<ComponentType: Eq> Eq for Gray<ComponentType>[src]

impl<ComponentType: Ord> Ord for Gray<ComponentType>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<ComponentType: PartialOrd> PartialOrd<Gray<ComponentType>> for Gray<ComponentType>[src]

impl<ComponentType: Hash> Hash for Gray<ComponentType>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<ComponentType: Debug> Debug for Gray<ComponentType>[src]

impl<ComponentType: Copy> Copy for Gray<ComponentType>[src]

impl<T> AsRef<T> for Gray<T>[src]

impl<T> AsMut<T> for Gray<T>[src]

impl<T: Clone> From<Gray<T>> for RGB<T>[src]

impl<T: Copy> From<T> for Gray<T>[src]

impl<T: Copy> From<Gray<T>> for GrayAlpha<T, u8>[src]

Assumes 255 is opaque

impl<T: Copy> From<Gray<T>> for GrayAlpha<T, u16>[src]

Assumes 65535 is opaque

impl<ComponentType: Clone> Clone for Gray<ComponentType>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<ComponentType: Default> Default for Gray<ComponentType>[src]

Auto Trait Implementations

impl<ComponentType> Unpin for Gray<ComponentType> where
    ComponentType: Unpin

impl<ComponentType> Send for Gray<ComponentType> where
    ComponentType: Send

impl<ComponentType> Sync for Gray<ComponentType> where
    ComponentType: Sync

Blanket Implementations

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

impl<T> From<T> for T[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]