embedded_graphics::pixelcolor::raw

Struct RawU16

Source
pub struct RawU16(/* private fields */);
Expand description

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.

Implementations§

Source§

impl RawU16

Source

pub const fn new(value: u16) -> RawU16

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

Trait Implementations§

Source§

impl Clone for RawU16

Source§

fn clone(&self) -> RawU16

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RawU16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for RawU16

Source§

fn default() -> RawU16

Returns the “default value” for a type. Read more
Source§

impl Format for RawU16

Source§

fn format(&self, f: Formatter<'_>)

Writes the defmt representation of self to fmt.
Source§

impl From<Bgr555> for RawU16

Source§

fn from(color: Bgr555) -> RawU16

Converts to this type from the input type.
Source§

impl From<Bgr565> for RawU16

Source§

fn from(color: Bgr565) -> RawU16

Converts to this type from the input type.
Source§

impl From<RawU16> for Bgr555

Source§

fn from(data: RawU16) -> Bgr555

Converts to this type from the input type.
Source§

impl From<RawU16> for Bgr565

Source§

fn from(data: RawU16) -> Bgr565

Converts to this type from the input type.
Source§

impl From<RawU16> for Rgb555

Source§

fn from(data: RawU16) -> Rgb555

Converts to this type from the input type.
Source§

impl From<RawU16> for Rgb565

Source§

fn from(data: RawU16) -> Rgb565

Converts to this type from the input type.
Source§

impl From<Rgb555> for RawU16

Source§

fn from(color: Rgb555) -> RawU16

Converts to this type from the input type.
Source§

impl From<Rgb565> for RawU16

Source§

fn from(color: Rgb565) -> RawU16

Converts to this type from the input type.
Source§

impl From<u16> for RawU16

Source§

fn from(value: u16) -> RawU16

Converts to this type from the input type.
Source§

impl Hash for RawU16

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for RawU16

Source§

fn cmp(&self, other: &RawU16) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for RawU16

Source§

fn eq(&self, other: &RawU16) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for RawU16

Source§

fn partial_cmp(&self, other: &RawU16) -> Option<Ordering>

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

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl RawData for RawU16

Source§

const BITS_PER_PIXEL: usize = 16usize

Bits per pixel.
Source§

type Storage = u16

Storage type. Read more
Source§

fn into_inner(self) -> <RawU16 as RawData>::Storage

Converts this raw data into the storage type. Read more
Source§

fn from_u32(value: u32) -> RawU16

Converts a u32 into a RawData type. Read more
Source§

impl ToBytes for RawU16

Source§

type Bytes = [u8; 2]

Return type of methods in this trait.
Source§

fn to_be_bytes(self) -> <RawU16 as ToBytes>::Bytes

Converts a color into a byte array with big endian byte order.
Source§

fn to_le_bytes(self) -> <RawU16 as ToBytes>::Bytes

Converts a color into a byte array with little endian byte order.
Source§

fn to_ne_bytes(self) -> <RawU16 as ToBytes>::Bytes

Converts a color into a byte array with native byte order.
Source§

impl Copy for RawU16

Source§

impl Eq for RawU16

Source§

impl StructuralPartialEq for RawU16

Auto Trait Implementations§

§

impl Freeze for RawU16

§

impl RefUnwindSafe for RawU16

§

impl Send for RawU16

§

impl Sync for RawU16

§

impl Unpin for RawU16

§

impl UnwindSafe for RawU16

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Az for T

Source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

Source§

fn cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> CheckedAs for T

Source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

Source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

Source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
Source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

Source§

fn lossy_into(self) -> Dst

Performs the conversion.
Source§

impl<T> OverflowingAs for T

Source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

Source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> SaturatingAs for T

Source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

Source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
Source§

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

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> UnwrappedAs for T

Source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

Source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> WrappingAs for T

Source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

Source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,