Struct sensehat_screen::color::PixelColor [] [src]

pub struct PixelColor {
    pub red: u8,
    pub green: u8,
    pub blue: u8,
}

A single LED pixel color, with RGB565 rendering.

    // FROM
    // convert directly from 3-bytes in a tuple
    let red: PixelColor = (0xFF, 0, 0).into();
    assert_eq!(red, PixelColor::RED);

    let green: PixelColor = (0, 0xFF, 0).into();
    assert_eq!(green, PixelColor::GREEN);

    // convert directly from Rgb565
    let blue_rgb565 = Rgb565::from_rgb(0, 0, 0xFF);
    let blue: PixelColor = blue_rgb565.into();
    assert_eq!(blue, PixelColor::new(0, 0, 0xF8));

    // INTO
    // convert directly into a 3-bytes tuple
    let red_tuple: (u8, u8, u8) = PixelColor::RED.into();
    assert_eq!(red_tuple, (0xFF, 0, 0));

    let yellow_tuple: (u8, u8, u8) = PixelColor::YELLOW.into();
    assert_eq!(yellow_tuple, (0xFF, 0xFF, 0));

    // convert directly into Rgb565
    let blue_565: Rgb565 = PixelColor::BLUE.into();
    assert_eq!(blue_565, Rgb565::from_rgb(0, 0, 0xF8));

Fields

Methods

impl PixelColor
[src]

BLACK: PixelColor = PixelColor{red: 0, green: 0, blue: 0,}

RED: PixelColor = PixelColor{red: 255, green: 0, blue: 0,}

BLUE: PixelColor = PixelColor{red: 0, green: 0, blue: 255,}

GREEN: PixelColor = PixelColor{red: 0, green: 255, blue: 0,}

WHITE: PixelColor = PixelColor{red: 255, green: 255, blue: 255,}

YELLOW: PixelColor = PixelColor{red: 255, green: 255, blue: 0,}

CYAN: PixelColor = PixelColor{red: 0, green: 255, blue: 255,}

MAGENTA: PixelColor = PixelColor{red: 255, green: 0, blue: 255,}

[src]

Create a new LED pixel color.

[src]

Create a new LED pixel color from a pair of RGB565-encoded bytes.

[src]

Encodes the current LED pixel color into a pair of RGB565-encoded bytes.

[src]

Sets 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 Clone for PixelColor
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PixelColor
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for PixelColor
[src]

[src]

Returns the "default value" for a type. Read more

impl PartialEq for PixelColor
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<Rgb565> for PixelColor
[src]

[src]

Performs the conversion.

impl From<(u8, u8, u8)> for PixelColor
[src]

[src]

Performs the conversion.

impl Into<(u8, u8, u8)> for PixelColor
[src]

[src]

Performs the conversion.

impl From<PixelColor> for Rgb565
[src]

[src]

Performs the conversion.

impl<'a> From<&'a PixelColor> for Rgb565
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for PixelColor

impl Sync for PixelColor