obws 0.15.0

The obws (obvious) remote control library for OBS.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Responses related to the replay buffer.

use serde::Deserialize;

#[derive(Debug, Deserialize)]
pub(crate) struct OutputActive {
    /// New state of the stream output.
    #[serde(rename = "outputActive")]
    pub active: bool,
}

#[derive(Debug, Deserialize)]
pub(crate) struct SavedReplayPath {
    #[serde(rename = "savedReplayPath")]
    pub saved_replay_path: String,
}