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: 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§
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
Auto Trait Implementations§
impl<S> Freeze for TitleParametersPayload<S>where
S: Freeze,
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more