Struct embedded_graphics::pixelcolor::raw::RawU24
source · [−]pub struct RawU24(_);
Expand description
24 bits per pixel raw data.
RawU24
is internally stored in an u32
. It can be constructed from an u32
by using the new
method or by calling RawU24::from(u32_value)
. To convert a RawU24
back into a u32
the into_inner
method can be used.
See the module-level documentation for more information.
Implementations
Trait Implementations
sourceimpl Ord for RawU24
impl Ord for RawU24
sourceimpl PartialOrd<RawU24> for RawU24
impl PartialOrd<RawU24> for RawU24
sourcefn partial_cmp(&self, other: &RawU24) -> Option<Ordering>
fn partial_cmp(&self, other: &RawU24) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for RawU24
impl Eq for RawU24
impl StructuralEq for RawU24
impl StructuralPartialEq for RawU24
Auto Trait Implementations
impl RefUnwindSafe for RawU24
impl Send for RawU24
impl Sync for RawU24
impl Unpin for RawU24
impl UnwindSafe for RawU24
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more