pub struct BallingSetVal {
pub pump_id: i32,
pub dosing_speed: f32,
pub dosing_volume: f32,
pub label: String,
}Expand description
Contains set value data for each pump.
Fields§
§pump_id: i32ID of the pump Attribute is public because access from within test cases. Data is not used in the implementation. Therefore, it is tagged as unused.
dosing_speed: f32flow rate of the pump in ml/sec
dosing_volume: f32dosing volume in ml which the pump shall deliver each hour
label: StringA label which describes the fluid that the pump is delivering Attribute is public because access from within test cases. Data is not used in the implementation. Therefore, it is tagged as unused.
Auto Trait Implementations§
impl Freeze for BallingSetVal
impl RefUnwindSafe for BallingSetVal
impl Send for BallingSetVal
impl Sync for BallingSetVal
impl Unpin for BallingSetVal
impl UnwindSafe for BallingSetVal
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