[][src]Struct embedded_graphics::pixelcolor::raw::RawU32

pub struct RawU32(_);

32 bits per pixel raw data.

RawU32 is internally stored in an u32. It can be constructed from an u32 by using the new method or by calling RawU32::from(u32_value). To convert a RawU32 back into a u32 the into_inner method can be used.

See the module-level documentation for more information.

Methods

impl RawU32[src]

pub const fn new(value: u32) -> Self[src]

Creates a new color from the least significant 32 bits of value.

Trait Implementations

impl Clone for RawU32[src]

impl Copy for RawU32[src]

impl Debug for RawU32[src]

impl Default for RawU32[src]

impl Eq for RawU32[src]

impl From<u32> for RawU32[src]

impl Hash for RawU32[src]

impl Ord for RawU32[src]

impl PartialEq<RawU32> for RawU32[src]

impl PartialOrd<RawU32> for RawU32[src]

impl RawData for RawU32[src]

type Storage = u32

Storage type. Read more

impl StructuralEq for RawU32[src]

impl StructuralPartialEq for RawU32[src]

Auto Trait Implementations

impl Send for RawU32

impl Sync for RawU32

impl Unpin for RawU32

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> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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<V, T> VZip<V> for T where
    V: MultiLane<T>,