pub struct Timing {
pub period: usize,
pub deadline: usize,
pub exec_time: usize,
}Expand description
The timing information for a thread.
Fields§
§period: usizeThe period of the thread after which it should run again.
deadline: usizeThe deadline of the thread.
exec_time: usizeThe execution time of the thread. (How much cpu time it needs)
Trait Implementations§
impl Copy for Timing
impl Eq for Timing
impl StructuralPartialEq for Timing
Auto Trait Implementations§
impl Freeze for Timing
impl RefUnwindSafe for Timing
impl Send for Timing
impl Sync for Timing
impl Unpin for Timing
impl UnwindSafe for Timing
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