pub enum SystemCommonMessage {
MTCQuarterFrame {
data: u8,
},
SongPositionPointer {
low: u8,
high: u8,
},
SongSelect {
song: u8,
},
Undefined1,
Undefined2,
TuneRequest,
EOX,
}
Variants§
Trait Implementations§
Source§impl Clone for SystemCommonMessage
impl Clone for SystemCommonMessage
Source§fn clone(&self) -> SystemCommonMessage
fn clone(&self) -> SystemCommonMessage
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 SystemCommonMessage
impl Debug for SystemCommonMessage
Source§impl PartialEq for SystemCommonMessage
impl PartialEq for SystemCommonMessage
impl Copy for SystemCommonMessage
impl Eq for SystemCommonMessage
impl StructuralPartialEq for SystemCommonMessage
Auto Trait Implementations§
impl Freeze for SystemCommonMessage
impl RefUnwindSafe for SystemCommonMessage
impl Send for SystemCommonMessage
impl Sync for SystemCommonMessage
impl Unpin for SystemCommonMessage
impl UnwindSafe for SystemCommonMessage
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