pub struct Plan {
pub command: ClockCommand,
pub next_poll_s: f64,
pub reset_register: bool,
pub verdict: ChangeVerdict,
}Fields§
§command: ClockCommand§next_poll_s: f64Seconds until the next poll.
reset_register: boolThe sample register is invalid after a step; caller must shift or clear it.
verdict: ChangeVerdictWhat the maximum-change guard made of this correction.
Trait Implementations§
impl Copy for Plan
impl StructuralPartialEq for Plan
Auto Trait Implementations§
impl Freeze for Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnsafeUnpin for Plan
impl UnwindSafe for Plan
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