pub struct CommEventLogMeta {
pub status: u16,
pub event_count: u16,
pub message_count: u16,
}Expand description
Fixed fields returned with a Get Comm Event Log response (FC 0x0C).
Event bytes are carried separately by append-style datastore hooks so direct-access stores can write them into the final response buffer.
Fields§
§status: u16Status word: 0x0000 ready, 0xFFFF busy.
event_count: u16Event counter value.
message_count: u16Message counter value.
Trait Implementations§
Source§impl Clone for CommEventLogMeta
impl Clone for CommEventLogMeta
Source§fn clone(&self) -> CommEventLogMeta
fn clone(&self) -> CommEventLogMeta
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CommEventLogMeta
Source§impl Debug for CommEventLogMeta
impl Debug for CommEventLogMeta
Source§impl Default for CommEventLogMeta
impl Default for CommEventLogMeta
Source§fn default() -> CommEventLogMeta
fn default() -> CommEventLogMeta
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CommEventLogMeta
impl RefUnwindSafe for CommEventLogMeta
impl Send for CommEventLogMeta
impl Sync for CommEventLogMeta
impl Unpin for CommEventLogMeta
impl UnsafeUnpin for CommEventLogMeta
impl UnwindSafe for CommEventLogMeta
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