pub struct Run {
pub watch: u16,
pub task: Task,
pub id: u64,
pub next_ping: u64,
pub err: u64,
pub pre_change: u64,
pub cost_li: CircularQueue<u32>,
}Fields§
§watch: u16§task: Task§id: u64§next_ping: u64§err: u64§pre_change: u64§cost_li: CircularQueue<u32>Implementations§
Trait Implementations§
source§impl PartialEq for Run
impl PartialEq for Run
source§impl PartialOrd for Run
impl PartialOrd for Run
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreAuto Trait Implementations§
impl Freeze for Run
impl RefUnwindSafe for Run
impl Send for Run
impl Sync for Run
impl Unpin for Run
impl UnwindSafe for Run
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