Struct rgb::alt::GrayAlpha[][src]

#[repr(C)]
pub struct GrayAlpha<ComponentType, AlphaComponentType = ComponentType>(pub ComponentType, pub AlphaComponentType);

Grayscale with alpha. Use .0/.1 to access.

Methods

impl<T: Clone, A> GrayAlpha<T, A>
[src]

Copy Gray component out of the GrayAlpha struct

impl<T, A> GrayAlpha<T, A>
[src]

Provide a mutable view of only Gray component (leaving out alpha).

impl<T: Copy, A: Clone> GrayAlpha<T, A>
[src]

Create new GrayAlpha with the same alpha value, but different Gray value

Trait Implementations

impl<T: Clone, A> From<GrayAlpha<T, A>> for RGBA<T, A>
[src]

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<ComponentType: Copy, AlphaComponentType: Copy> Copy for GrayAlpha<ComponentType, AlphaComponentType>
[src]

impl<ComponentType: Clone, AlphaComponentType: Clone> Clone for GrayAlpha<ComponentType, AlphaComponentType>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<ComponentType: Debug, AlphaComponentType: Debug> Debug for GrayAlpha<ComponentType, AlphaComponentType>
[src]

Formats the value using the given formatter. Read more

impl<ComponentType: Default, AlphaComponentType: Default> Default for GrayAlpha<ComponentType, AlphaComponentType>
[src]

Returns the "default value" for a type. Read more

impl<ComponentType: Eq, AlphaComponentType: Eq> Eq for GrayAlpha<ComponentType, AlphaComponentType>
[src]

impl<ComponentType: PartialEq, AlphaComponentType: PartialEq> PartialEq for GrayAlpha<ComponentType, AlphaComponentType>
[src]

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

This method tests for !=.

impl<ComponentType: Ord, AlphaComponentType: Ord> Ord for GrayAlpha<ComponentType, AlphaComponentType>
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<ComponentType: PartialOrd, AlphaComponentType: PartialOrd> PartialOrd for GrayAlpha<ComponentType, AlphaComponentType>
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<ComponentType: Hash, AlphaComponentType: Hash> Hash for GrayAlpha<ComponentType, AlphaComponentType>
[src]

Feeds this value into the given [Hasher]. Read more

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

impl<T: Copy, B> ComponentMap<GrayAlpha<B>, T, B> for GrayAlpha<T>
[src]

Convenience function (equivalent of self.iter().map().collect()) for applying the same formula to every component. Read more

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

The components interpreted as an array, e.g. one RGB expands to 3 elements. Read more

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

Assumes 255 is opaque

Performs the conversion.

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

Assumes 65535 is opaque

Performs the conversion.

Auto Trait Implementations

impl<ComponentType, AlphaComponentType> Send for GrayAlpha<ComponentType, AlphaComponentType> where
    AlphaComponentType: Send,
    ComponentType: Send

impl<ComponentType, AlphaComponentType> Sync for GrayAlpha<ComponentType, AlphaComponentType> where
    AlphaComponentType: Sync,
    ComponentType: Sync