loopsmith-core 0.3.1

Config model and A-H validation for loopsmith loops
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Section A — static context every node receives.

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct InfoItem {
    pub key: String,
    pub value: String,
    #[serde(default)]
    pub note: Option<String>,
}