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§
Sourcefn start_time(&self) -> &Duration
fn start_time(&self) -> &Duration
The starting time
Sourcefn start_time_mut(&mut self) -> &mut Duration
fn start_time_mut(&mut self) -> &mut Duration
The starting time (mutable)