Enum abc_parser::datatypes::MusicSymbol[][src]

pub enum MusicSymbol {
    Note {
        decoration: Option<Decoration>,
        accidental: Option<Accidental>,
        note: char,
        octave: i8,
        length: f32,
    },
    Bar(String),
    Rest(Rest),
    Ending(u32),
    VisualBreak(),
}

Variants

Fields of Note

Methods

impl MusicSymbol
[src]

Trait Implementations

impl ToABC for MusicSymbol
[src]

Creates a valid ABC text representation of the object.

impl Debug for MusicSymbol
[src]

Formats the value using the given formatter. Read more

impl PartialEq for MusicSymbol
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for MusicSymbol

impl Sync for MusicSymbol