pub struct MID0091rev1 {
pub number_of_spindles: u8,
pub spindles_running: u8,
pub sync_tightening_id: u32,
pub timestamp: DateTime<Local>,
pub sync_overall_status: u8,
pub spindle_statuses: Vec<SpindleStatus>,
}Expand description
The multi-spindle status is sent after each sync tightening. It contains both the common status of the multiple and the individual status of each spindle.
Fields§
§number_of_spindles: u8The number of spindles in the tightening.
spindles_running: u8The number of spindles currently running in the multiple.
sync_tightening_id: u32A unique ID for each sync tightening result.
timestamp: DateTime<Local>Timestamp for the multi-spindle status (YYYY-MM-DD:HH:MM:SS).
sync_overall_status: u8The overall status of the sync tightening (1=OK, 0=NOK).
spindle_statuses: Vec<SpindleStatus>The status of each spindle in the multiple.
Trait Implementations§
Source§impl Debug for MID0091rev1
impl Debug for MID0091rev1
Source§impl Decode for MID0091rev1
impl Decode for MID0091rev1
Source§impl Default for MID0091rev1
impl Default for MID0091rev1
Source§fn default() -> MID0091rev1
fn default() -> MID0091rev1
Returns the “default value” for a type. Read more
Source§impl Encode for MID0091rev1
impl Encode for MID0091rev1
Source§impl Message for MID0091rev1
impl Message for MID0091rev1
fn mid() -> u16
fn to_mid(&self) -> u16
fn revision() -> u16
fn to_revision(&self) -> u16
fn message_type() -> MessageType
fn to_message_type(&self) -> MessageType
Source§impl PartialEq for MID0091rev1
impl PartialEq for MID0091rev1
impl Eq for MID0091rev1
impl StructuralPartialEq for MID0091rev1
Auto Trait Implementations§
impl Freeze for MID0091rev1
impl RefUnwindSafe for MID0091rev1
impl Send for MID0091rev1
impl Sync for MID0091rev1
impl Unpin for MID0091rev1
impl UnwindSafe for MID0091rev1
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