mindcontrol_types 0.21.0

Mind Control types
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

/// Collection version settings. Unlike the payload settings, the version
/// settings aren't needed for the runtime and aren't sent to the clients,
/// however also affect the collection versioning.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct VersionSettings {
    /// Packages settings object.
    pub packages: Option<super::package::PackagesSettings>,
}