pub struct SetTriggerDescriptionPayload {
pub long_touch: Option<String>,
pub push: Option<String>,
pub rotate: Option<String>,
pub touch: Option<String>,
}Expand description
A trigger description update message.
Fields§
§long_touch: Option<String>A value that describes the long-touch interaction with the touch display.
push: Option<String>A value that describes the push interaction with the dial.
rotate: Option<String>A value that describes the rotate interaction with the dial.
touch: Option<String>A value that describes the touch interaction with the touch display.
Trait Implementations§
Source§impl Debug for SetTriggerDescriptionPayload
impl Debug for SetTriggerDescriptionPayload
Source§impl<'de> Deserialize<'de> for SetTriggerDescriptionPayload
impl<'de> Deserialize<'de> for SetTriggerDescriptionPayload
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 Freeze for SetTriggerDescriptionPayload
impl RefUnwindSafe for SetTriggerDescriptionPayload
impl Send for SetTriggerDescriptionPayload
impl Sync for SetTriggerDescriptionPayload
impl Unpin for SetTriggerDescriptionPayload
impl UnsafeUnpin for SetTriggerDescriptionPayload
impl UnwindSafe for SetTriggerDescriptionPayload
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