[][src]Enum toio::proto::Light

pub enum Light {
    AllOff,
    Off(LightOff),
    On(LightOn),
    Ctrl(LightCtrl),
}

Message to lights.

Variants

AllOff

Turns off all the lights.

Turns off a light.

Turns on a light.

Ctrl(LightCtrl)

Control lights with the list of operations.

Implementations

impl Light[src]

pub fn new_all_off() -> Self[src]

Constructs a new Light::AllOff.

impl Light[src]

pub fn new_off(f0: LightOff) -> Self[src]

Constructs a new Light::Off.

impl Light[src]

pub fn new_on(f0: LightOn) -> Self[src]

Constructs a new Light::On.

impl Light[src]

pub fn new_ctrl(f0: LightCtrl) -> Self[src]

Constructs a new Light::Ctrl.

Trait Implementations

impl Clone for Light[src]

impl Debug for Light[src]

impl Eq for Light[src]

impl PartialEq<Light> for Light[src]

impl StructuralEq for Light[src]

impl StructuralPartialEq for Light[src]

impl<'_> TryFrom<&'_ [u8]> for Light[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Light> for Vec<u8>[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Light> for (Uuid, Vec<u8>)[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Vec<u8>> for Light[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Light

impl Send for Light

impl Sync for Light

impl Unpin for Light

impl UnwindSafe for Light

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.