pub enum SerialReadingOrder {
WindowOrder,
PitchAscending,
PitchDescending,
VoiceAscending,
VoiceDescending,
}Expand description
Ordering policy selected for one same-onset attack block.
Variants§
WindowOrder
Preserve the canonical exact-window note order.
PitchAscending
Sort equal-onset attacks by pitch, low to high.
PitchDescending
Sort equal-onset attacks by pitch, high to low.
VoiceAscending
Sort equal-onset attacks by voice id, low to high.
VoiceDescending
Sort equal-onset attacks by voice id, high to low.
Implementations§
Trait Implementations§
Source§impl Clone for SerialReadingOrder
impl Clone for SerialReadingOrder
Source§fn clone(&self) -> SerialReadingOrder
fn clone(&self) -> SerialReadingOrder
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 moreimpl Copy for SerialReadingOrder
Source§impl Debug for SerialReadingOrder
impl Debug for SerialReadingOrder
impl Eq for SerialReadingOrder
Source§impl Ord for SerialReadingOrder
impl Ord for SerialReadingOrder
Source§fn cmp(&self, other: &SerialReadingOrder) -> Ordering
fn cmp(&self, other: &SerialReadingOrder) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SerialReadingOrder
impl PartialEq for SerialReadingOrder
Source§impl PartialOrd for SerialReadingOrder
impl PartialOrd for SerialReadingOrder
impl StructuralPartialEq for SerialReadingOrder
Auto Trait Implementations§
impl Freeze for SerialReadingOrder
impl RefUnwindSafe for SerialReadingOrder
impl Send for SerialReadingOrder
impl Sync for SerialReadingOrder
impl Unpin for SerialReadingOrder
impl UnsafeUnpin for SerialReadingOrder
impl UnwindSafe for SerialReadingOrder
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