pub struct PitchBendCell {
pub time: Time,
pub channel: Channel,
pub value: U14,
}Expand description
A MIDI pitch-bend cell.
Fields§
§time: TimeTime of the bend.
channel: ChannelMIDI channel affected.
value: U1414-bit bend value.
Trait Implementations§
Source§impl Clone for PitchBendCell
impl Clone for PitchBendCell
Source§fn clone(&self) -> PitchBendCell
fn clone(&self) -> PitchBendCell
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 PitchBendCell
impl Debug for PitchBendCell
impl Eq for PitchBendCell
Source§impl PartialEq for PitchBendCell
impl PartialEq for PitchBendCell
impl StructuralPartialEq for PitchBendCell
Auto Trait Implementations§
impl Freeze for PitchBendCell
impl RefUnwindSafe for PitchBendCell
impl Send for PitchBendCell
impl Sync for PitchBendCell
impl Unpin for PitchBendCell
impl UnsafeUnpin for PitchBendCell
impl UnwindSafe for PitchBendCell
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