#[repr(C)]pub struct MIDINoteMessage {
pub channel: u8,
pub note: u8,
pub velocity: u8,
pub releaseVelocity: u8,
pub duration: f32,
}
Available on crate feature
MusicPlayer
only.Expand description
The parameters to specify a MIDI note
See also Apple’s documentation
Fields§
§channel: u8
§note: u8
§velocity: u8
§releaseVelocity: u8
§duration: f32
Trait Implementations§
Source§impl Clone for MIDINoteMessage
impl Clone for MIDINoteMessage
Source§fn clone(&self) -> MIDINoteMessage
fn clone(&self) -> MIDINoteMessage
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 MIDINoteMessage
impl Debug for MIDINoteMessage
Source§impl Encode for MIDINoteMessage
impl Encode for MIDINoteMessage
Source§impl PartialEq for MIDINoteMessage
impl PartialEq for MIDINoteMessage
Source§impl RefEncode for MIDINoteMessage
impl RefEncode for MIDINoteMessage
Source§const ENCODING_REF: Encoding
const ENCODING_REF: Encoding
The Objective-C type-encoding for a reference of this type. Read more
impl Copy for MIDINoteMessage
impl StructuralPartialEq for MIDINoteMessage
Auto Trait Implementations§
impl Freeze for MIDINoteMessage
impl RefUnwindSafe for MIDINoteMessage
impl Send for MIDINoteMessage
impl Sync for MIDINoteMessage
impl Unpin for MIDINoteMessage
impl UnwindSafe for MIDINoteMessage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> EncodeArgument for Twhere
T: Encode,
impl<T> EncodeArgument for Twhere
T: Encode,
Source§const ENCODING_ARGUMENT: Encoding = T::ENCODING
const ENCODING_ARGUMENT: Encoding = T::ENCODING
The Objective-C type-encoding for this type.
Source§impl<T> EncodeReturn for Twhere
T: Encode,
impl<T> EncodeReturn for Twhere
T: Encode,
Source§const ENCODING_RETURN: Encoding = T::ENCODING
const ENCODING_RETURN: Encoding = T::ENCODING
The Objective-C type-encoding for this type.