[][src]Enum ultrastar_txt::structs::Note

pub enum Note {
    Regular {
        start: i32,
        duration: i32,
        pitch: i32,
        text: String,
    },
    Golden {
        start: i32,
        duration: i32,
        pitch: i32,
        text: String,
    },
    Freestyle {
        start: i32,
        duration: i32,
        pitch: i32,
        text: String,
    },
    PlayerChange {
        player: i32,
    },
}

Describes the different types of notes the parser might encounter

Variants

Regular

a regular note

Fields of Regular

start: i32

start of the note

duration: i32

duration of the note

pitch: i32

pitch of the note (in semitones with C2 being 0)

text: String

text or syllable of the note

Golden

a golden note (2x points)

Fields of Golden

start: i32

start of the note

duration: i32

duration of the note

pitch: i32

pitch of the note (in semitones with C2 being 0)

text: String

text or syllable of the note

Freestyle

a freestyle note (note that does not award points)

Fields of Freestyle

start: i32

start of the note

duration: i32

duration of the note

pitch: i32

pitch of the note (in semitones with C2 being 0)

text: String

text or syllable of the note

PlayerChange

player change indicator for duet mode

Fields of PlayerChange

player: i32

player to change to 1 = Player1 2 = Player2 3 = Both

Methods

impl Note[src]

pub fn start(&self) -> Option<i32>[src]

returns the start value of the note

pub fn duration(&self) -> Option<i32>[src]

returns the duration value of the note

pub fn pitch(&self) -> Option<i32>[src]

returns the pitch value of the note

pub fn text(&self) -> Option<&str>[src]

returns a refernece to the text of the note

pub fn player(&self) -> Option<i32>[src]

returns player change number for duett mode

Trait Implementations

impl PartialEq<Note> for Note[src]

impl Clone for Note[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Note[src]

Auto Trait Implementations

impl Send for Note

impl Sync for Note

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]