obws 0.15.0

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

use serde::Deserialize;

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