pub struct InvariantDelta {
pub retains_total_order: bool,
pub retains_aggregate_identity: bool,
pub relaxed_invariants: Vec<PitchInvariant>,
}Expand description
Which row invariants a transform preserved or relaxed.
Fields§
§retains_total_order: boolWhether the result remains one strict total ordering of twelve positions.
retains_aggregate_identity: boolWhether the result still contains each pitch class exactly once.
relaxed_invariants: Vec<PitchInvariant>Named invariants intentionally relaxed by the transform.
Trait Implementations§
Source§impl Clone for InvariantDelta
impl Clone for InvariantDelta
Source§fn clone(&self) -> InvariantDelta
fn clone(&self) -> InvariantDelta
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 InvariantDelta
impl Debug for InvariantDelta
impl Eq for InvariantDelta
Source§impl PartialEq for InvariantDelta
impl PartialEq for InvariantDelta
impl StructuralPartialEq for InvariantDelta
Auto Trait Implementations§
impl Freeze for InvariantDelta
impl RefUnwindSafe for InvariantDelta
impl Send for InvariantDelta
impl Sync for InvariantDelta
impl Unpin for InvariantDelta
impl UnsafeUnpin for InvariantDelta
impl UnwindSafe for InvariantDelta
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