Trait HasStartTime

Source
pub trait HasStartTime {
    // Required methods
    fn start_time(&self) -> &Duration;
    fn start_time_mut(&mut self) -> &mut Duration;
}
Expand description

Trait for the starting time

Required Methods§

Source

fn start_time(&self) -> &Duration

The starting time

Source

fn start_time_mut(&mut self) -> &mut Duration

The starting time (mutable)

Implementors§

Source§

impl<C, I, R, SC> HasStartTime for StdState<C, I, R, SC>