Struct streamdeck_rs::TitleParametersPayload
source · pub struct TitleParametersPayload<S> {
pub settings: S,
pub coordinates: Coordinates,
pub state: Option<u8>,
pub title: String,
pub title_parameters: TitleParameters,
}Expand description
The new title of a key.
Fields§
§settings: SThe stored settings for the action instance.
coordinates: CoordinatesThe 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: StringThe new title.
title_parameters: TitleParametersAdditional parameters for the display of the title.
Trait Implementations§
source§impl<S: Debug> Debug for TitleParametersPayload<S>
impl<S: Debug> Debug for TitleParametersPayload<S>
source§impl<'de, S> Deserialize<'de> for TitleParametersPayload<S>where
S: Deserialize<'de>,
impl<'de, S> Deserialize<'de> for TitleParametersPayload<S>where
S: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more