pub enum BinaryColor {
Off,
On,
}Expand description
Binary color.
BinaryColor is used for displays and images with two possible color states.
The interpretation of active and inactive states can be different for
different types of displays. A BinaryColor::On might represent a black
pixel on an LCD and a white pixel on an OLED display.
To simplify the conversion from BinaryColor to RGB and grayscale color
types the default conversions assume that BinaryColor::Off is black and
BinaryColor::On is white.
§Conversion between BinaryColor and bool
use embedded_graphics::pixelcolor::BinaryColor;
// A BinaryColor can be converted to a bool by using the is_on and is_off methods.
let color = BinaryColor::On;
assert!(color.is_on());
assert!(color.invert().is_off());
// BinaryColor implements From<bool>.
let bool_value = true;
let color: BinaryColor = bool_value.into();
assert_eq!(color, BinaryColor::On);
// this is equivalent to:
let bool_value = true;
let color = if bool_value {
BinaryColor::On
} else {
BinaryColor::Off
};
assert_eq!(color, BinaryColor::On);Variants§
Implementations§
Source§impl BinaryColor
impl BinaryColor
Sourcepub const fn invert(self) -> BinaryColor
pub const fn invert(self) -> BinaryColor
Inverts the color.
§Examples
use embedded_graphics::pixelcolor::BinaryColor;
assert_eq!(BinaryColor::Off.invert(), BinaryColor::On);
assert_eq!(BinaryColor::On.invert(), BinaryColor::Off);Trait Implementations§
Source§impl Clone for BinaryColor
impl Clone for BinaryColor
Source§fn clone(&self) -> BinaryColor
fn clone(&self) -> BinaryColor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ColorMapping for BinaryColor
impl ColorMapping for BinaryColor
Source§fn char_to_color(c: char) -> BinaryColor
fn char_to_color(c: char) -> BinaryColor
Converts a char into a color of type
C.Source§fn color_to_char(color: BinaryColor) -> char
fn color_to_char(color: BinaryColor) -> char
Converts a color of type
C into a char.Source§const NONE_COLOR: Rgb888 = _
const NONE_COLOR: Rgb888 = _
Source§impl Debug for BinaryColor
impl Debug for BinaryColor
Source§impl Default for BinaryColor
impl Default for BinaryColor
Source§fn default() -> BinaryColor
fn default() -> BinaryColor
Returns the “default value” for a type. Read more
Source§impl From<Bgr555> for BinaryColor
impl From<Bgr555> for BinaryColor
Source§fn from(color: Bgr555) -> BinaryColor
fn from(color: Bgr555) -> BinaryColor
Converts to this type from the input type.
Source§impl From<Bgr565> for BinaryColor
impl From<Bgr565> for BinaryColor
Source§fn from(color: Bgr565) -> BinaryColor
fn from(color: Bgr565) -> BinaryColor
Converts to this type from the input type.
Source§impl From<Bgr666> for BinaryColor
impl From<Bgr666> for BinaryColor
Source§fn from(color: Bgr666) -> BinaryColor
fn from(color: Bgr666) -> BinaryColor
Converts to this type from the input type.
Source§impl From<Bgr888> for BinaryColor
impl From<Bgr888> for BinaryColor
Source§fn from(color: Bgr888) -> BinaryColor
fn from(color: Bgr888) -> BinaryColor
Converts to this type from the input type.
Source§impl From<BinaryColor> for Rgb565
impl From<BinaryColor> for Rgb565
Source§fn from(color: BinaryColor) -> Rgb565
fn from(color: BinaryColor) -> Rgb565
Converts to this type from the input type.
Source§impl From<Gray2> for BinaryColor
impl From<Gray2> for BinaryColor
Source§fn from(color: Gray2) -> BinaryColor
fn from(color: Gray2) -> BinaryColor
Converts to this type from the input type.
Source§impl From<Gray4> for BinaryColor
impl From<Gray4> for BinaryColor
Source§fn from(color: Gray4) -> BinaryColor
fn from(color: Gray4) -> BinaryColor
Converts to this type from the input type.
Source§impl From<Gray8> for BinaryColor
impl From<Gray8> for BinaryColor
Source§fn from(color: Gray8) -> BinaryColor
fn from(color: Gray8) -> BinaryColor
Converts to this type from the input type.
Source§impl From<RawU1> for BinaryColor
impl From<RawU1> for BinaryColor
Source§fn from(data: RawU1) -> BinaryColor
fn from(data: RawU1) -> BinaryColor
Converts to this type from the input type.
Source§impl From<Rgb555> for BinaryColor
impl From<Rgb555> for BinaryColor
Source§fn from(color: Rgb555) -> BinaryColor
fn from(color: Rgb555) -> BinaryColor
Converts to this type from the input type.
Source§impl From<Rgb565> for BinaryColor
impl From<Rgb565> for BinaryColor
Source§fn from(color: Rgb565) -> BinaryColor
fn from(color: Rgb565) -> BinaryColor
Converts to this type from the input type.
Source§impl From<Rgb666> for BinaryColor
impl From<Rgb666> for BinaryColor
Source§fn from(color: Rgb666) -> BinaryColor
fn from(color: Rgb666) -> BinaryColor
Converts to this type from the input type.
Source§impl From<Rgb888> for BinaryColor
impl From<Rgb888> for BinaryColor
Source§fn from(color: Rgb888) -> BinaryColor
fn from(color: Rgb888) -> BinaryColor
Converts to this type from the input type.
Source§impl From<bool> for BinaryColor
impl From<bool> for BinaryColor
Source§fn from(value: bool) -> BinaryColor
fn from(value: bool) -> BinaryColor
Converts to this type from the input type.
Source§impl Hash for BinaryColor
impl Hash for BinaryColor
Source§impl Ord for BinaryColor
impl Ord for BinaryColor
Source§fn cmp(&self, other: &BinaryColor) -> Ordering
fn cmp(&self, other: &BinaryColor) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BinaryColor
impl PartialEq for BinaryColor
Source§impl PartialOrd for BinaryColor
impl PartialOrd for BinaryColor
Source§impl PixelColor for BinaryColor
impl PixelColor for BinaryColor
impl Copy for BinaryColor
impl Eq for BinaryColor
impl StructuralPartialEq for BinaryColor
Auto Trait Implementations§
impl Freeze for BinaryColor
impl RefUnwindSafe for BinaryColor
impl Send for BinaryColor
impl Sync for BinaryColor
impl Unpin for BinaryColor
impl UnwindSafe for BinaryColor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
Source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Casts the value.
Source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
Source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<C> IntoStorage for C
impl<C> IntoStorage for C
Source§type Storage = <<C as PixelColor>::Raw as RawData>::Storage
type Storage = <<C as PixelColor>::Raw as RawData>::Storage
The underlying storage type for the pixel color
Source§fn into_storage(self) -> <C as IntoStorage>::Storage
fn into_storage(self) -> <C as IntoStorage>::Storage
Convert the
PixelColor into its raw storage formSource§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
Source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Casts the value.
Source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
Source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Casts the value.
Source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
Source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Casts the value.
Source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
Source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Casts the value.
Source§impl<C> ToBytes for C
impl<C> ToBytes for C
Source§fn to_le_bytes(self) -> <C as ToBytes>::Bytes
fn to_le_bytes(self) -> <C as ToBytes>::Bytes
Converts a color into a byte array with little endian byte order.
Source§fn to_be_bytes(self) -> <C as ToBytes>::Bytes
fn to_be_bytes(self) -> <C as ToBytes>::Bytes
Converts a color into a byte array with big endian byte order.
Source§fn to_ne_bytes(self) -> <C as ToBytes>::Bytes
fn to_ne_bytes(self) -> <C as ToBytes>::Bytes
Converts a color into a byte array with native byte order.
Source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
Source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
Source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
Source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
Source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
Source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
Source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
Source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.