pub struct PipelineTracker { /* private fields */ }Expand description
Tracks progress through a multi-stage pipeline.
Implementations§
Source§impl PipelineTracker
impl PipelineTracker
Sourcepub fn new(stages: Vec<String>) -> PipelineTracker
pub fn new(stages: Vec<String>) -> PipelineTracker
Create a new pipeline tracker with the given stages.
Sourcepub fn current_stage(&self) -> Option<&str>
pub fn current_stage(&self) -> Option<&str>
Get the current stage name.
Sourcepub fn next_stage(&self) -> Option<&str>
pub fn next_stage(&self) -> Option<&str>
Get the next stage name.
Sourcepub fn advance(&mut self, elapsed_us: u64) -> bool
pub fn advance(&mut self, elapsed_us: u64) -> bool
Advance to the next stage, recording timing for the completed stage.
Sourcepub fn record_items(&mut self, count: u64)
pub fn record_items(&mut self, count: u64)
Record items processed in current stage.
Sourcepub fn is_complete(&self) -> bool
pub fn is_complete(&self) -> bool
Check if pipeline is complete.
Sourcepub fn total_time_us(&self) -> u64
pub fn total_time_us(&self) -> u64
Get total pipeline timing.
Sourcepub fn stage_timing(&self, stage: &str) -> Option<u64>
pub fn stage_timing(&self, stage: &str) -> Option<u64>
Get timing for a specific stage.
Trait Implementations§
Source§impl Clone for PipelineTracker
impl Clone for PipelineTracker
Source§fn clone(&self) -> PipelineTracker
fn clone(&self) -> PipelineTracker
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PipelineTracker
impl RefUnwindSafe for PipelineTracker
impl Send for PipelineTracker
impl Sync for PipelineTracker
impl Unpin for PipelineTracker
impl UnwindSafe for PipelineTracker
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.