pub enum NoteKind {
Visible,
Invisible,
Long,
Landmine,
}
Expand description
A kind of the note.
Variants§
Visible
A normal note can be seen by the user.
Invisible
A invisible note cannot be played by the user.
Long
A long-press note (LN), requires the user to hold pressing the key.
Landmine
A landmine note that treated as POOR judgement when
Implementations§
Trait Implementations§
source§impl PartialEq for NoteKind
impl PartialEq for NoteKind
impl Copy for NoteKind
impl Eq for NoteKind
impl StructuralEq for NoteKind
impl StructuralPartialEq for NoteKind
Auto Trait Implementations§
impl RefUnwindSafe for NoteKind
impl Send for NoteKind
impl Sync for NoteKind
impl Unpin for NoteKind
impl UnwindSafe for NoteKind
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more