[][src]Struct huelib::resource::rule::Action

pub struct Action {
    pub address: String,
    pub request_method: ActionRequestMethod,
    pub body: JsonValue,
}

Action of a schedule or rule.

Fields

address: String

Address where the action will be executed.

request_method: ActionRequestMethod

The HTTP method used to send the body to the given address.

body: JsonValue

Body of the request that the action sends.

Implementations

impl Action[src]

pub fn from_creator<C>(creator: &C) -> Result<Self, JsonError> where
    C: Creator
[src]

Creates a new action from a Creator.

pub fn from_modifier<M>(modifier: &M, id: M::Id) -> Result<Self, JsonError> where
    M: Modifier
[src]

Creates a new action from a Modifier.

pub fn from_scanner<S>(scanner: &S) -> Result<Self, JsonError> where
    S: Scanner
[src]

Creates a new action from a Scanner.

Trait Implementations

impl Clone for Action[src]

impl Debug for Action[src]

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

impl Eq for Action[src]

impl PartialEq<Action> for Action[src]

impl Serialize for Action[src]

impl StructuralEq for Action[src]

impl StructuralPartialEq for Action[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.