obws 0.15.0

The obws (obvious) remote control library for OBS.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Responses related to hotkeys.

use serde::Deserialize;

/// Response value for [`crate::client::Hotkeys::list`].
#[derive(Debug, Deserialize)]
pub(crate) struct Hotkeys {
    /// Array of hotkey names.
    #[serde(rename = "hotkeys")]
    pub hotkeys: Vec<String>,
}