[][src]Struct lodepng::Grey

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

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

Trait Implementations

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

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

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

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

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

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

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

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

type Target = T

The resulting type after dereferencing.

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

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

Assumes 255 is opaque

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

Assumes 65535 is opaque

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

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

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

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

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

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

impl<T> Pod for Gray<T> where
    T: Pod
[src]

impl<ComponentType> StructuralEq for Gray<ComponentType>[src]

impl<ComponentType> StructuralPartialEq for Gray<ComponentType>[src]

impl<T> Zeroable for Gray<T> where
    T: Zeroable, 
[src]

Auto Trait Implementations

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

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

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

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

impl<ComponentType> UnwindSafe for Gray<ComponentType> where
    ComponentType: 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<!> for T[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.