pub struct OwnedGetCommEventLogResponse {
pub byte_count: u8,
pub status: u16,
pub event_count: u16,
pub message_count: u16,
pub events: Bytes,
}Expand description
Owned variant of GetCommEventLogResponse (FC 0x0C).
Fields§
§byte_count: u8Number of bytes that follow.
status: u16Status word (0x0000 = ready, 0xFFFF = busy).
event_count: u16Event counter value.
message_count: u16Message counter value.
events: BytesEvent log bytes.
Implementations§
Trait Implementations§
Source§impl Clone for OwnedGetCommEventLogResponse
impl Clone for OwnedGetCommEventLogResponse
Source§fn clone(&self) -> OwnedGetCommEventLogResponse
fn clone(&self) -> OwnedGetCommEventLogResponse
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 moreAuto Trait Implementations§
impl !Freeze for OwnedGetCommEventLogResponse
impl RefUnwindSafe for OwnedGetCommEventLogResponse
impl Send for OwnedGetCommEventLogResponse
impl Sync for OwnedGetCommEventLogResponse
impl Unpin for OwnedGetCommEventLogResponse
impl UnsafeUnpin for OwnedGetCommEventLogResponse
impl UnwindSafe for OwnedGetCommEventLogResponse
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