Skip to main content

ProgressRun

Struct ProgressRun 

Source
pub struct ProgressRun<'a> { /* private fields */ }
Expand description

Tracks one progress-producing operation and reports lifecycle events.

ProgressRun owns no operation-specific counters. Callers keep their own domain state and pass freshly built ProgressCounters when reporting. The run only manages elapsed time, periodic running-event throttling, optional stage metadata, and forwarding immutable events to a reporter.

Implementations§

Source§

impl<'a> ProgressRun<'a>

Source

pub fn new( reporter: &'a dyn ProgressReporter, report_interval: Duration, ) -> Self

Creates a progress run starting at the current instant.

§Parameters
  • reporter - Reporter receiving progress events.
  • report_interval - Minimum delay between due-based running events.
§Returns

A progress run whose elapsed time is measured from now.

Source

pub fn from_start( reporter: &'a dyn ProgressReporter, report_interval: Duration, started_at: Instant, ) -> Self

Creates a progress run from an explicit start instant.

§Parameters
  • reporter - Reporter receiving progress events.
  • report_interval - Minimum delay between due-based running events.
  • started_at - Monotonic instant representing operation start.
§Returns

A progress run using started_at for elapsed-time calculations.

Source

pub fn with_stage(self, stage: ProgressStage) -> Self

Returns a copy configured with stage metadata.

§Parameters
  • stage - Stage metadata attached to subsequently reported events.
§Returns

This progress run with stage recorded.

Source

pub fn without_stage(self) -> Self

Returns a copy with stage metadata removed.

§Returns

This progress run without stage metadata.

Source

pub fn report_started(&self, counters: ProgressCounters)

Reports a started lifecycle event.

§Parameters
  • counters - Initial counters for the operation.
§Panics

Propagates panics from the configured reporter.

Source

pub fn report_running(&self, counters: ProgressCounters)

Reports a running lifecycle event immediately.

§Parameters
  • counters - Current counters for the operation.
§Panics

Propagates panics from the configured reporter.

Source

pub fn report_running_if_due(&mut self, counters: ProgressCounters) -> bool

Reports a running lifecycle event if the configured interval has passed.

§Parameters
  • counters - Current counters for the operation.
§Returns

true when a running event was emitted, or false when the next running-event deadline has not been reached.

§Panics

Propagates panics from the configured reporter when an event is due.

Source

pub fn report_finished(&self, counters: ProgressCounters)

Reports a finished lifecycle event.

§Parameters
  • counters - Final counters for a successfully completed operation.
§Panics

Propagates panics from the configured reporter.

Source

pub fn report_failed(&self, counters: ProgressCounters)

Reports a failed lifecycle event.

§Parameters
  • counters - Final or current counters for a failed operation.
§Panics

Propagates panics from the configured reporter.

Source

pub fn report_canceled(&self, counters: ProgressCounters)

Reports a canceled lifecycle event.

§Parameters
  • counters - Final or current counters for a canceled operation.
§Panics

Propagates panics from the configured reporter.

Source

pub fn report(&self, phase: ProgressPhase, counters: ProgressCounters)

Reports a lifecycle event with the run’s current elapsed duration.

§Parameters
  • phase - Lifecycle phase to report.
  • counters - Counters carried by the event.
§Panics

Propagates panics from the configured reporter.

Source

pub fn report_with_elapsed( &self, phase: ProgressPhase, counters: ProgressCounters, elapsed: Duration, )

Reports a lifecycle event with an explicit elapsed duration.

§Parameters
  • phase - Lifecycle phase to report.
  • counters - Counters carried by the event.
  • elapsed - Elapsed duration carried by the event.
§Panics

Propagates panics from the configured reporter.

Source

pub fn elapsed(&self) -> Duration

Returns the elapsed duration since this run started.

§Returns

The monotonic elapsed duration for this progress run.

Source

pub const fn started_at(&self) -> Instant

Returns the start instant for this run.

§Returns

The monotonic instant used as this run’s start time.

Source

pub const fn report_interval(&self) -> Duration

Returns the configured running-event interval.

§Returns

The minimum delay between due-based running events.

Source

pub const fn stage(&self) -> Option<&ProgressStage>

Returns the optional stage metadata attached to events.

§Returns

Some(stage) when stage metadata is configured, otherwise None.

Auto Trait Implementations§

§

impl<'a> Freeze for ProgressRun<'a>

§

impl<'a> !RefUnwindSafe for ProgressRun<'a>

§

impl<'a> Send for ProgressRun<'a>

§

impl<'a> Sync for ProgressRun<'a>

§

impl<'a> Unpin for ProgressRun<'a>

§

impl<'a> UnsafeUnpin for ProgressRun<'a>

§

impl<'a> !UnwindSafe for ProgressRun<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.