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
sourcepub fn from(color: BinaryColor) -> RawU1
pub fn from(color: BinaryColor) -> RawU1
Performs the conversion.
sourceimpl From<RawU1> for BinaryColor
impl From<RawU1> for BinaryColor
sourcepub fn from(data: RawU1) -> BinaryColor
pub fn from(data: RawU1) -> BinaryColor
Performs the conversion.
sourceimpl Ord for RawU1
impl Ord for RawU1
sourceimpl PartialOrd<RawU1> for RawU1
impl PartialOrd<RawU1> for RawU1
sourcepub fn partial_cmp(&self, other: &RawU1) -> Option<Ordering>
pub 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
sourceimpl ToBytes for RawU1
impl ToBytes for RawU1
sourcepub fn to_be_bytes(self) -> <RawU1 as ToBytes>::Bytes
pub fn to_be_bytes(self) -> <RawU1 as ToBytes>::Bytes
Converts a color into a byte array with big endian byte order.
sourcepub fn to_le_bytes(self) -> <RawU1 as ToBytes>::Bytes
pub fn to_le_bytes(self) -> <RawU1 as ToBytes>::Bytes
Converts a color into a byte array with little endian byte order.
sourcepub fn to_ne_bytes(self) -> <RawU1 as ToBytes>::Bytes
pub fn to_ne_bytes(self) -> <RawU1 as ToBytes>::Bytes
Converts a color into a byte array with native byte order.
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
sourceimpl<T> CheckedAs for T
impl<T> CheckedAs for T
sourcepub fn checked_as<Dst>(self) -> Option<Dst> where
T: CheckedCast<Dst>,
pub fn checked_as<Dst>(self) -> Option<Dst> where
T: CheckedCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> CheckedCastFrom<Src> for Dst where
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dst where
Src: CheckedCast<Dst>,
sourcepub fn checked_cast_from(src: Src) -> Option<Dst>
pub fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
sourceimpl<T> OverflowingAs for T
impl<T> OverflowingAs for T
sourcepub fn overflowing_as<Dst>(self) -> (Dst, bool) where
T: OverflowingCast<Dst>,
pub fn overflowing_as<Dst>(self) -> (Dst, bool) where
T: OverflowingCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> OverflowingCastFrom<Src> for Dst where
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dst where
Src: OverflowingCast<Dst>,
sourcepub fn overflowing_cast_from(src: Src) -> (Dst, bool)
pub fn overflowing_cast_from(src: Src) -> (Dst, bool)
OverflowingCasts the value.
sourceimpl<T> SaturatingAs for T
impl<T> SaturatingAs for T
sourcepub fn saturating_as<Dst>(self) -> Dst where
T: SaturatingCast<Dst>,
pub fn saturating_as<Dst>(self) -> Dst where
T: SaturatingCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> SaturatingCastFrom<Src> for Dst where
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dst where
Src: SaturatingCast<Dst>,
sourcepub fn saturating_cast_from(src: Src) -> Dst
pub fn saturating_cast_from(src: Src) -> Dst
Casts the value.
sourceimpl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
sourcepub fn unwrapped_as<Dst>(self) -> Dst where
T: UnwrappedCast<Dst>,
pub fn unwrapped_as<Dst>(self) -> Dst where
T: UnwrappedCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> UnwrappedCastFrom<Src> for Dst where
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dst where
Src: UnwrappedCast<Dst>,
sourcepub fn unwrapped_cast_from(src: Src) -> Dst
pub fn unwrapped_cast_from(src: Src) -> Dst
UnwrappedCasts the value.
sourceimpl<T> WrappingAs for T
impl<T> WrappingAs for T
sourcepub fn wrapping_as<Dst>(self) -> Dst where
T: WrappingCast<Dst>,
pub fn wrapping_as<Dst>(self) -> Dst where
T: WrappingCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> WrappingCastFrom<Src> for Dst where
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dst where
Src: WrappingCast<Dst>,
sourcepub fn wrapping_cast_from(src: Src) -> Dst
pub fn wrapping_cast_from(src: Src) -> Dst
WrappingCasts the value.