chord-progression-parser 0.7.0

a converter from chord progression strings to AST
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::chord_detailed::ChordDetailed;
use serde::{Deserialize, Serialize};
use typeshare::typeshare;

#[typeshare]
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Chord {
    pub plain: String,
    pub detailed: ChordDetailed,
}