pub struct SchedStats {
pub maint_time: Duration,
pub add_time: Duration,
pub remove_time: Duration,
pub total_time: Duration,
}Expand description
Statistics for the schdeduler
Fields§
§maint_time: Duration§add_time: Duration§remove_time: Duration§total_time: DurationTrait Implementations§
Source§impl Clone for SchedStats
impl Clone for SchedStats
Source§fn clone(&self) -> SchedStats
fn clone(&self) -> SchedStats
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 moreSource§impl Debug for SchedStats
impl Debug for SchedStats
Source§impl Default for SchedStats
impl Default for SchedStats
Source§fn default() -> SchedStats
fn default() -> SchedStats
Returns the “default value” for a type. Read more
impl Copy for SchedStats
Auto Trait Implementations§
impl Freeze for SchedStats
impl RefUnwindSafe for SchedStats
impl Send for SchedStats
impl Sync for SchedStats
impl Unpin for SchedStats
impl UnwindSafe for SchedStats
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