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

pub struct RawU1(_);

1 bit per pixel raw data.

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

See the module-level documentation for more information.

Methods

impl RawU1[src]

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

Creates a new color from the least significant 1 bit of value.

Trait Implementations

impl Clone for RawU1[src]

impl Copy for RawU1[src]

impl Debug for RawU1[src]

impl Default for RawU1[src]

impl Eq for RawU1[src]

impl From<BinaryColor> for RawU1[src]

impl From<RawU1> for BinaryColor[src]

impl From<u8> for RawU1[src]

impl Hash for RawU1[src]

impl Ord for RawU1[src]

impl PartialEq<RawU1> for RawU1[src]

impl PartialOrd<RawU1> for RawU1[src]

impl RawData for RawU1[src]

type Storage = u8

Storage type. Read more

impl StructuralEq for RawU1[src]

impl StructuralPartialEq for RawU1[src]

Auto Trait Implementations

impl Send for RawU1

impl Sync for RawU1

impl Unpin for RawU1

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