You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
obws/src/responses/scene_collections.rs

15 lines
529 B
Rust

//! 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>,
}