[][src]Struct huelib::group::Creator

pub struct Creator {
    pub name: String,
    pub lights: Vec<String>,
    pub kind: Option<TypeCreator>,
    pub class: Option<Class>,
}

Struct for creating a new group.

Fields

name: String

The name of the new group.

lights: Vec<String>

Identifier of the lights that will be in the new group.

kind: Option<TypeCreator>

The type of the new group.

class: Option<Class>

The class of the new group. It is only used when group_type is Room. If group_type is Room and class is None the room will get the class Other.

Trait Implementations

impl Clone for Creator[src]

impl Debug for Creator[src]

impl Eq for Creator[src]

impl PartialEq<Creator> for Creator[src]

impl Serialize for Creator[src]

impl StructuralEq for Creator[src]

impl StructuralPartialEq for Creator[src]

Auto Trait Implementations

impl RefUnwindSafe for Creator

impl Send for Creator

impl Sync for Creator

impl Unpin for Creator

impl UnwindSafe for Creator

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.