[][src]Struct streamdeck_rs::TitleParametersPayload

pub struct TitleParametersPayload<S> {
    pub settings: S,
    pub coordinates: Coordinates,
    pub state: Option<u8>,
    pub title: String,
    pub title_parameters: TitleParameters,
}

The new title of a key.

Fields

settings: S

The stored settings for the action instance.

coordinates: Coordinates

The location of the key, or None if this action instance is part of a multi action.

state: Option<u8>

The state of the action instance.

title: String

The new title.

title_parameters: TitleParameters

Additional parameters for the display of the title.

Trait Implementations

impl<S: Debug> Debug for TitleParametersPayload<S>[src]

impl<'de, S> Deserialize<'de> for TitleParametersPayload<S> where
    S: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for TitleParametersPayload<S> where
    S: RefUnwindSafe

impl<S> Send for TitleParametersPayload<S> where
    S: Send

impl<S> Sync for TitleParametersPayload<S> where
    S: Sync

impl<S> Unpin for TitleParametersPayload<S> where
    S: Unpin

impl<S> UnwindSafe for TitleParametersPayload<S> where
    S: UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,