[][src]Struct huelib::resource::schedule::Schedule

pub struct Schedule {
    pub id: String,
    pub name: String,
    pub description: String,
    pub command: Command,
    pub local_time: String,
    pub start_time: Option<NaiveDateTime>,
    pub status: Status,
    pub auto_delete: Option<bool>,
}

Schedule of a resource.

Fields

id: String

Identifier of the schedule.

name: String

Name of the schedule.

description: String

Description of the schedule.

command: Command

Action to execute when the scheduled event occurs.

local_time: String

Time when the scheduled event will occur.

start_time: Option<NaiveDateTime>

UTC time that the timer was started. Only provided for timers.

status: Status

Status of the schedule.

auto_delete: Option<bool>

Whether the schedule will be removed after it expires.

Trait Implementations

impl Clone for Schedule[src]

impl Debug for Schedule[src]

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

impl PartialEq<Schedule> for Schedule[src]

impl Resource for Schedule[src]

impl StructuralPartialEq for Schedule[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: for<'de> 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.