uddf-sdk 0.2.0

Reading and writing UDDF files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::Serialize;

use crate::entities::repetition_group::structure::RepetitionGroup;

/// Represents a profile data.
///
/// https://www.streit.cc/extern/uddf_v321/en/profiledata.html
#[derive(Debug, Serialize)]
pub struct ProfileData {
    #[serde(rename = "repetitiongroup")]
    pub repetition_groups: Vec<RepetitionGroup>,
}