Struct sensehat_screen::color::PixelColor [−][src]
24-bit RGB color pixel.
This is the fundamental representation for RGB colors.
Fields
red: u8
green: u8
blue: u8
Methods
impl PixelColor[src]
impl PixelColorpub const BLACK: PixelColor
BLACK: PixelColor = PixelColor{red: 0, green: 0, blue: 0,}
pub const RED: PixelColor
RED: PixelColor = PixelColor{red: 255, green: 0, blue: 0,}
pub const BLUE: PixelColor
BLUE: PixelColor = PixelColor{red: 0, green: 0, blue: 255,}
pub const GREEN: PixelColor
GREEN: PixelColor = PixelColor{red: 0, green: 255, blue: 0,}
pub const WHITE: PixelColor
WHITE: PixelColor = PixelColor{red: 255, green: 255, blue: 255,}
pub const YELLOW: PixelColor
YELLOW: PixelColor = PixelColor{red: 255, green: 255, blue: 0,}
pub const CYAN: PixelColor
CYAN: PixelColor = PixelColor{red: 0, green: 255, blue: 255,}
pub const MAGENTA: PixelColor
MAGENTA: PixelColor = PixelColor{red: 255, green: 0, blue: 255,}
pub fn new(red: u8, green: u8, blue: u8) -> Self[src]
pub fn new(red: u8, green: u8, blue: u8) -> SelfCreate a new LED pixel color.
pub fn from_rgb565_bytes(color: [u8; 2]) -> Self[src]
pub fn from_rgb565_bytes(color: [u8; 2]) -> SelfCreate a new LED pixel color from a pair of RGB565-encoded bytes.
pub fn rgb565(&self) -> [u8; 2][src]
pub fn rgb565(&self) -> [u8; 2]Encodes the current LED pixel color into a pair of RGB565-encoded bytes.
pub fn dim(self, scale: f32) -> PixelColor[src]
pub fn dim(self, scale: f32) -> PixelColorSets the brightness of this colour.
The scale value should be between 0 and 1. Values outside this range
are clamped.
Trait Implementations
impl Copy for PixelColor[src]
impl Copy for PixelColorimpl Clone for PixelColor[src]
impl Clone for PixelColorfn clone(&self) -> PixelColor[src]
fn clone(&self) -> PixelColorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Default for PixelColor[src]
impl Default for PixelColorfn default() -> PixelColor[src]
fn default() -> PixelColorReturns the "default value" for a type. Read more
impl PartialEq for PixelColor[src]
impl PartialEq for PixelColorfn eq(&self, other: &PixelColor) -> bool[src]
fn eq(&self, other: &PixelColor) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &PixelColor) -> bool[src]
fn ne(&self, other: &PixelColor) -> boolThis method tests for !=.
impl Debug for PixelColor[src]
impl Debug for PixelColorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl From<Rgb565> for PixelColor[src]
impl From<Rgb565> for PixelColorimpl From<(u8, u8, u8)> for PixelColor[src]
impl From<(u8, u8, u8)> for PixelColorimpl Into<(u8, u8, u8)> for PixelColor[src]
impl Into<(u8, u8, u8)> for PixelColorimpl From<PixelColor> for Rgb565[src]
impl From<PixelColor> for Rgb565fn from(color: PixelColor) -> Self[src]
fn from(color: PixelColor) -> SelfPerforms the conversion.
impl<'a> From<&'a PixelColor> for Rgb565[src]
impl<'a> From<&'a PixelColor> for Rgb565fn from(color: &'a PixelColor) -> Self[src]
fn from(color: &'a PixelColor) -> SelfPerforms the conversion.
Auto Trait Implementations
impl Send for PixelColor
impl Send for PixelColorimpl Sync for PixelColor
impl Sync for PixelColor