pub struct VerticalCollection {
pub order: BlockOrder,
pub slices: Vec<VerticalSlice>,
pub aggregate_coverage: AggregateCoverageReport,
}Expand description
A partition rendered as a set of vertical collections.
Fields§
§order: BlockOrderThe partition’s ordering contract.
slices: Vec<VerticalSlice>One vertical slice per partition block.
aggregate_coverage: AggregateCoverageReportAggregate pitch-class coverage across all slices.
Trait Implementations§
Source§impl Clone for VerticalCollection
impl Clone for VerticalCollection
Source§fn clone(&self) -> VerticalCollection
fn clone(&self) -> VerticalCollection
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 VerticalCollection
impl Debug for VerticalCollection
impl Eq for VerticalCollection
Source§impl PartialEq for VerticalCollection
impl PartialEq for VerticalCollection
impl StructuralPartialEq for VerticalCollection
Auto Trait Implementations§
impl Freeze for VerticalCollection
impl RefUnwindSafe for VerticalCollection
impl Send for VerticalCollection
impl Sync for VerticalCollection
impl Unpin for VerticalCollection
impl UnsafeUnpin for VerticalCollection
impl UnwindSafe for VerticalCollection
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