[][src]Struct huelib::capabilities::ScenesInfo

pub struct ScenesInfo {
    pub available: usize,
    pub total: usize,
    pub light_states: Info,
}

Info about the capability of scenes.

Fields

available: usize

Number of currently available scenes.

total: usize

Total number of available scenes.

light_states: Info

Capabilities of light states.

Trait Implementations

impl Clone for ScenesInfo[src]

impl Copy for ScenesInfo[src]

impl Debug for ScenesInfo[src]

impl<'de> Deserialize<'de> for ScenesInfo[src]

impl Eq for ScenesInfo[src]

impl PartialEq<ScenesInfo> for ScenesInfo[src]

impl Serialize for ScenesInfo[src]

impl StructuralEq for ScenesInfo[src]

impl StructuralPartialEq for ScenesInfo[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.