pub enum NoteEventType {
Good = 0,
Bad = 1,
Miss = 2,
Bomb = 3,
Unknown = 255,
}Variants§
Trait Implementations§
Source§impl Clone for NoteEventType
impl Clone for NoteEventType
Source§fn clone(&self) -> NoteEventType
fn clone(&self) -> NoteEventType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NoteEventType
impl Debug for NoteEventType
Source§impl PartialEq for NoteEventType
impl PartialEq for NoteEventType
Source§impl TryFrom<i32> for NoteEventType
impl TryFrom<i32> for NoteEventType
Source§impl TryInto<u8> for NoteEventType
impl TryInto<u8> for NoteEventType
impl Copy for NoteEventType
Auto Trait Implementations§
impl Freeze for NoteEventType
impl RefUnwindSafe for NoteEventType
impl Send for NoteEventType
impl Sync for NoteEventType
impl Unpin for NoteEventType
impl UnwindSafe for NoteEventType
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