pub struct ErrorLog {
pub write_error_level: u8,
pub read_error_level: u8,
pub transceiver_disabled: bool,
pub write_timeout_count: u32,
pub read_register_overflow_count: u32,
pub read_buffer_overflow_count: u32,
}
Fields§
§write_error_level: u8
§read_error_level: u8
§transceiver_disabled: bool
§write_timeout_count: u32
§read_register_overflow_count: u32
§read_buffer_overflow_count: u32
Trait Implementations§
Source§impl FromByteSlice for ErrorLog
impl FromByteSlice for ErrorLog
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> ErrorLog
fn from_le_byte_slice(bytes: &[u8]) -> ErrorLog
Deserialize the implementing type from a byte slice.
impl Copy for ErrorLog
impl Eq for ErrorLog
impl StructuralPartialEq for ErrorLog
Auto Trait Implementations§
impl Freeze for ErrorLog
impl RefUnwindSafe for ErrorLog
impl Send for ErrorLog
impl Sync for ErrorLog
impl Unpin for ErrorLog
impl UnwindSafe for ErrorLog
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