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
//! Responses related to scene collections.

use serde::{Deserialize, Serialize};

/// Response value for [`crate::client::SceneCollections::list`].
#[derive(Clone, Debug, Default, Deserialize, Eq, Hash, Ord, PartialEq, PartialOrd, Serialize)]
pub struct SceneCollections {
    /// The name of the current scene collection.
    #[serde(rename = "currentSceneCollectionName")]
    pub current: String,
    /// Array of all available scene collections.
    #[serde(rename = "sceneCollections")]
    pub collections: Vec<String>,
}