pub struct RefillStatus {
pub refill_in_progress_live: bool,
pub refill_in_progress_for_database: bool,
}Expand description
Struct contains the status of the refill control for communication to the data logger.
Fields§
§refill_in_progress_live: boolStatus bit of refill control: It follows the actuation of the refill pump.
refill_in_progress_for_database: boolStatus bit of refill control for data logger:
- It is set with the start when the refill pump is actuated.
- It is unset by the data logger to make sure the data logger has captured the refill.
Auto Trait Implementations§
impl Freeze for RefillStatus
impl RefUnwindSafe for RefillStatus
impl Send for RefillStatus
impl Sync for RefillStatus
impl Unpin for RefillStatus
impl UnwindSafe for RefillStatus
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