Struct embedded_graphics::pixelcolor::raw::RawU1
source · [−]pub struct RawU1(_);
Expand description
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.
Implementations
Trait Implementations
sourceimpl From<BinaryColor> for RawU1
impl From<BinaryColor> for RawU1
sourcefn from(color: BinaryColor) -> Self
fn from(color: BinaryColor) -> Self
Performs the conversion.
sourceimpl Ord for RawU1
impl Ord for RawU1
sourceimpl PartialOrd<RawU1> for RawU1
impl PartialOrd<RawU1> for RawU1
sourcefn partial_cmp(&self, other: &RawU1) -> Option<Ordering>
fn partial_cmp(&self, other: &RawU1) -> 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 RawU1
impl Eq for RawU1
impl StructuralEq for RawU1
impl StructuralPartialEq for RawU1
Auto Trait Implementations
impl RefUnwindSafe for RawU1
impl Send for RawU1
impl Sync for RawU1
impl Unpin for RawU1
impl UnwindSafe for RawU1
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