Enum embedded_graphics::pixelcolor::BinaryColor
source · 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 fn invert(self) -> BinaryColor
pub 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 copy 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) -> Self
fn char_to_color(c: char) -> Self
Converts a char into a color of type
C
.source§fn color_to_char(color: Self) -> char
fn color_to_char(color: Self) -> 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<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 Bgr555
impl From<BinaryColor> for Bgr555
source§fn from(color: BinaryColor) -> Bgr555
fn from(color: BinaryColor) -> Bgr555
Converts to this type from the input type.
source§impl From<BinaryColor> for Bgr565
impl From<BinaryColor> for Bgr565
source§fn from(color: BinaryColor) -> Bgr565
fn from(color: BinaryColor) -> Bgr565
Converts to this type from the input type.
source§impl From<BinaryColor> for Bgr888
impl From<BinaryColor> for Bgr888
source§fn from(color: BinaryColor) -> Bgr888
fn from(color: BinaryColor) -> Bgr888
Converts to this type from the input type.
source§impl From<BinaryColor> for Gray2
impl From<BinaryColor> for Gray2
source§fn from(color: BinaryColor) -> Gray2
fn from(color: BinaryColor) -> Gray2
Converts to this type from the input type.
source§impl From<BinaryColor> for Gray4
impl From<BinaryColor> for Gray4
source§fn from(color: BinaryColor) -> Gray4
fn from(color: BinaryColor) -> Gray4
Converts to this type from the input type.
source§impl From<BinaryColor> for Gray8
impl From<BinaryColor> for Gray8
source§fn from(color: BinaryColor) -> Gray8
fn from(color: BinaryColor) -> Gray8
Converts to this type from the input type.
source§impl From<BinaryColor> for RawU1
impl From<BinaryColor> for RawU1
source§fn from(color: BinaryColor) -> RawU1
fn from(color: BinaryColor) -> RawU1
Converts to this type from the input type.
source§impl From<BinaryColor> for Rgb555
impl From<BinaryColor> for Rgb555
source§fn from(color: BinaryColor) -> Rgb555
fn from(color: BinaryColor) -> Rgb555
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<BinaryColor> for Rgb888
impl From<BinaryColor> for Rgb888
source§fn from(color: BinaryColor) -> Rgb888
fn from(color: BinaryColor) -> Rgb888
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<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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<C> IntoStorage for C
impl<C> IntoStorage for C
§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.