pub struct ArrangerObjectRollView {
pub target: Symbol,
pub arranger: Symbol,
pub lanes: Vec<ArrangerLane>,
pub diagnostics: Vec<ArrangerDiagnostic>,
}Expand description
Complete arranger object-roll view.
Fields§
§target: SymbolIntent target edited by arranger actions.
arranger: SymbolArranger object being edited.
lanes: Vec<ArrangerLane>Visible lanes.
diagnostics: Vec<ArrangerDiagnostic>Diagnostics to display next to placements.
Trait Implementations§
Source§impl Clone for ArrangerObjectRollView
impl Clone for ArrangerObjectRollView
Source§fn clone(&self) -> ArrangerObjectRollView
fn clone(&self) -> ArrangerObjectRollView
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 ArrangerObjectRollView
impl Debug for ArrangerObjectRollView
impl Eq for ArrangerObjectRollView
Source§impl PartialEq for ArrangerObjectRollView
impl PartialEq for ArrangerObjectRollView
Source§fn eq(&self, other: &ArrangerObjectRollView) -> bool
fn eq(&self, other: &ArrangerObjectRollView) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArrangerObjectRollView
Auto Trait Implementations§
impl Freeze for ArrangerObjectRollView
impl RefUnwindSafe for ArrangerObjectRollView
impl Send for ArrangerObjectRollView
impl Sync for ArrangerObjectRollView
impl Unpin for ArrangerObjectRollView
impl UnsafeUnpin for ArrangerObjectRollView
impl UnwindSafe for ArrangerObjectRollView
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