pub struct BoundParameterTrack<T: ParameterValue> { /* private fields */ }Expand description
One typed bound track retained inside an IntegralPlan.
Implementations§
Source§impl<T: ParameterValue> BoundParameterTrack<T>
impl<T: ParameterValue> BoundParameterTrack<T>
Sourcepub fn track(&self) -> &ParameterTrack<T>
pub fn track(&self) -> &ParameterTrack<T>
Returns the original typed track.
Sourcepub fn projection(&self) -> &ParameterProjection<T>
pub fn projection(&self) -> &ParameterProjection<T>
Returns the projected values and omitted ordinals for this plan.
Sourcepub fn ordinal_ledger(&self) -> Vec<ParameterOrdinalLedgerEntry>
pub fn ordinal_ledger(&self) -> Vec<ParameterOrdinalLedgerEntry>
Returns the source-ordinal ledger retained by the track binding.
Trait Implementations§
Source§impl<T: Clone + ParameterValue> Clone for BoundParameterTrack<T>
impl<T: Clone + ParameterValue> Clone for BoundParameterTrack<T>
Source§fn clone(&self) -> BoundParameterTrack<T>
fn clone(&self) -> BoundParameterTrack<T>
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<T: Debug + ParameterValue> Debug for BoundParameterTrack<T>
impl<T: Debug + ParameterValue> Debug for BoundParameterTrack<T>
impl<T: Eq + ParameterValue> Eq for BoundParameterTrack<T>
Source§impl<T: ParameterValue + Send + Sync> ErasedParameterBinding for BoundParameterTrack<T>
impl<T: ParameterValue + Send + Sync> ErasedParameterBinding for BoundParameterTrack<T>
Source§fn alphabet_id(&self) -> &AlphabetId
fn alphabet_id(&self) -> &AlphabetId
Returns the source alphabet identity retained by this binding.
Source§fn exhaustion(&self) -> Exhaustion
fn exhaustion(&self) -> Exhaustion
Returns the configured exhaustion policy.
Source§fn source_len(&self) -> usize
fn source_len(&self) -> usize
Returns the source series length.
Source§fn ordinal_ledger(&self) -> Vec<ParameterOrdinalLedgerEntry>
fn ordinal_ledger(&self) -> Vec<ParameterOrdinalLedgerEntry>
Returns the retained ordinal ledger for emitted values.
Source§fn debug_values(&self) -> Vec<String>
fn debug_values(&self) -> Vec<String>
Returns one debug rendering per emitted value in plan order.
Source§fn omitted_plan_ordinals(&self) -> &[usize]
fn omitted_plan_ordinals(&self) -> &[usize]
Returns one debug rendering for every omitted one-shot plan ordinal.
Source§impl<T: PartialEq + ParameterValue> PartialEq for BoundParameterTrack<T>
impl<T: PartialEq + ParameterValue> PartialEq for BoundParameterTrack<T>
impl<T: PartialEq + ParameterValue> StructuralPartialEq for BoundParameterTrack<T>
Auto Trait Implementations§
impl<T> Freeze for BoundParameterTrack<T>
impl<T> RefUnwindSafe for BoundParameterTrack<T>where
T: RefUnwindSafe,
impl<T> Send for BoundParameterTrack<T>where
T: Send,
impl<T> Sync for BoundParameterTrack<T>where
T: Sync,
impl<T> Unpin for BoundParameterTrack<T>where
T: Unpin,
impl<T> UnsafeUnpin for BoundParameterTrack<T>
impl<T> UnwindSafe for BoundParameterTrack<T>where
T: RefUnwindSafe + UnwindSafe,
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