pub struct ParameterOrdinalLedgerEntry {
pub plan_ordinal: usize,
pub parameter_ordinal: usize,
pub cycle: usize,
}Expand description
Source-ordinal ledger entry retained after one track is bound into a plan.
Fields§
§plan_ordinal: usizeZero-based position in the integral plan.
parameter_ordinal: usizeZero-based source ordinal inside the parameter track.
cycle: usizeZero-based wrap count for cyclic reuse.
Trait Implementations§
Source§impl Clone for ParameterOrdinalLedgerEntry
impl Clone for ParameterOrdinalLedgerEntry
Source§fn clone(&self) -> ParameterOrdinalLedgerEntry
fn clone(&self) -> ParameterOrdinalLedgerEntry
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 ParameterOrdinalLedgerEntry
impl Debug for ParameterOrdinalLedgerEntry
impl Eq for ParameterOrdinalLedgerEntry
impl StructuralPartialEq for ParameterOrdinalLedgerEntry
Auto Trait Implementations§
impl Freeze for ParameterOrdinalLedgerEntry
impl RefUnwindSafe for ParameterOrdinalLedgerEntry
impl Send for ParameterOrdinalLedgerEntry
impl Sync for ParameterOrdinalLedgerEntry
impl Unpin for ParameterOrdinalLedgerEntry
impl UnsafeUnpin for ParameterOrdinalLedgerEntry
impl UnwindSafe for ParameterOrdinalLedgerEntry
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