pub struct PolyPressureCell {
pub time: Time,
pub channel: Channel,
pub key: U7,
pub pressure: U7,
}Expand description
A MIDI polyphonic key-pressure cell.
Fields§
§time: TimeTime of the pressure event.
channel: ChannelMIDI channel affected.
key: U7Key the pressure applies to.
pressure: U7Pressure amount.
Trait Implementations§
Source§impl Clone for PolyPressureCell
impl Clone for PolyPressureCell
Source§fn clone(&self) -> PolyPressureCell
fn clone(&self) -> PolyPressureCell
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PolyPressureCell
impl Debug for PolyPressureCell
impl Eq for PolyPressureCell
Source§impl PartialEq for PolyPressureCell
impl PartialEq for PolyPressureCell
impl StructuralPartialEq for PolyPressureCell
Auto Trait Implementations§
impl Freeze for PolyPressureCell
impl RefUnwindSafe for PolyPressureCell
impl Send for PolyPressureCell
impl Sync for PolyPressureCell
impl Unpin for PolyPressureCell
impl UnsafeUnpin for PolyPressureCell
impl UnwindSafe for PolyPressureCell
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