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

pub struct RawU16(_);

16 bits per pixel raw data.

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

See the module-level documentation for more information.

Methods

impl RawU16[src]

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

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

Trait Implementations

impl Clone for RawU16[src]

impl Copy for RawU16[src]

impl Debug for RawU16[src]

impl Default for RawU16[src]

impl Eq for RawU16[src]

impl From<Bgr555> for RawU16[src]

impl From<Bgr565> for RawU16[src]

impl From<RawU16> for Rgb555[src]

impl From<RawU16> for Bgr555[src]

impl From<RawU16> for Rgb565[src]

impl From<RawU16> for Bgr565[src]

impl From<Rgb555> for RawU16[src]

impl From<Rgb565> for RawU16[src]

impl From<u16> for RawU16[src]

impl Hash for RawU16[src]

impl Ord for RawU16[src]

impl PartialEq<RawU16> for RawU16[src]

impl PartialOrd<RawU16> for RawU16[src]

impl RawData for RawU16[src]

type Storage = u16

Storage type. Read more

impl StructuralEq for RawU16[src]

impl StructuralPartialEq for RawU16[src]

Auto Trait Implementations

impl Send for RawU16

impl Sync for RawU16

impl Unpin for RawU16

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>,