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

pub struct RawU8(_);

8 bits per pixel raw data.

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

See the module-level documentation for more information.

Methods

impl RawU8[src]

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

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

Trait Implementations

impl Clone for RawU8[src]

impl Copy for RawU8[src]

impl Debug for RawU8[src]

impl Default for RawU8[src]

impl Eq for RawU8[src]

impl From<Gray8> for RawU8[src]

impl From<RawU8> for Gray8[src]

impl From<u8> for RawU8[src]

impl Hash for RawU8[src]

impl Ord for RawU8[src]

impl PartialEq<RawU8> for RawU8[src]

impl PartialOrd<RawU8> for RawU8[src]

impl RawData for RawU8[src]

type Storage = u8

Storage type. Read more

impl StructuralEq for RawU8[src]

impl StructuralPartialEq for RawU8[src]

Auto Trait Implementations

impl Send for RawU8

impl Sync for RawU8

impl Unpin for RawU8

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