pub enum LedColor {
    Red,
    Green,
    Yellow,
    Orange,
    Blue,
}
Expand description

A led color.

Can be converted into a output visual by adding the boolean state:

use drogue_wasm::{OutputVisual, LedColor};

let visual: OutputVisual = true + LedColor::Red;
let transformer: fn(bool) -> OutputVisual = |state| state + LedColor::Red;

Variants

Red

Green

Yellow

Orange

Blue

Trait Implementations

The resulting type after applying the + operator.

Performs the + operation. Read more

The resulting type after applying the + operator.

Performs the + operation. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.