pub struct ChibiErrorLog {
pub underrun: u16,
pub crc_error: u16,
pub no_ack: u16,
pub overflow: u16,
}
Fields§
§underrun: u16
§crc_error: u16
§no_ack: u16
§overflow: u16
Trait Implementations§
Source§impl Clone for ChibiErrorLog
impl Clone for ChibiErrorLog
Source§fn clone(&self) -> ChibiErrorLog
fn clone(&self) -> ChibiErrorLog
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ChibiErrorLog
impl Debug for ChibiErrorLog
Source§impl Default for ChibiErrorLog
impl Default for ChibiErrorLog
Source§fn default() -> ChibiErrorLog
fn default() -> ChibiErrorLog
Returns the “default value” for a type. Read more
Source§impl FromByteSlice for ChibiErrorLog
impl FromByteSlice for ChibiErrorLog
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]) -> ChibiErrorLog
fn from_le_byte_slice(bytes: &[u8]) -> ChibiErrorLog
Deserialize the implementing type from a byte slice.
Source§impl Hash for ChibiErrorLog
impl Hash for ChibiErrorLog
Source§impl PartialEq for ChibiErrorLog
impl PartialEq for ChibiErrorLog
impl Copy for ChibiErrorLog
impl Eq for ChibiErrorLog
impl StructuralPartialEq for ChibiErrorLog
Auto Trait Implementations§
impl Freeze for ChibiErrorLog
impl RefUnwindSafe for ChibiErrorLog
impl Send for ChibiErrorLog
impl Sync for ChibiErrorLog
impl Unpin for ChibiErrorLog
impl UnwindSafe for ChibiErrorLog
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