[][src]Struct huelib::color::Color

pub struct Color { /* fields omitted */ }

Struct for setting the color of a light.

Implementations

impl Color[src]

pub fn from_space_coordinates(x: f32, y: f32) -> Self[src]

Creates a new color from space coordinates.

This only changes the color of a light and not the brightness.

Examples

Generate a color and use it in a modifier:

use huelib::{Color, resource::light};

let color = Color::from_space_coordinates(0.1, 0.2);
let modifier = light::StateModifier::new().with_color(color);

pub fn from_rgb(red: u8, green: u8, blue: u8) -> Self[src]

Creates a new color from rgb values.

This changes the color and brightness of a light.

Examples

Generate a color and use it in a modifier:

use huelib::{Color, resource::light};

let color = Color::from_rgb(255, 0, 0);
let modifier = light::StateModifier::new().with_color(color);

pub fn from_hex(s: impl AsRef<str>) -> Result<Self, ParseHexError>[src]

Creates a new color from a hex value.

The string must begin with a # followed by either 3 or 6 hexadecimal digits.

This changes the color and brightness of a light.

Examples

Generate a color and use it in a modifier:

use huelib::{Color, resource::light};

let red = Color::from_hex("#FF0000")?;
let modifier = light::StateModifier::new().with_color(red);

Generate a color using the short version:

let color = huelib::Color::from_hex("#02B")?;

Trait Implementations

impl Clone for Color[src]

impl Copy for Color[src]

impl Debug for Color[src]

impl PartialEq<Color> for Color[src]

impl StructuralPartialEq for Color[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.