pub struct ReceiverStatistics {
pub total_packets: u32,
pub accepted_packets: u32,
pub coap_version_errors: u32,
pub coap_type_errors: u32,
pub coap_code_errors: u32,
pub uri_mismatches: u32,
pub missing_options: u32,
pub hmac_failures: u32,
pub replay_detected: u32,
pub parse_errors: u32,
pub last_packet_time_ms: u32,
}Fields§
§total_packets: u32§accepted_packets: u32§coap_version_errors: u32§coap_type_errors: u32§coap_code_errors: u32§uri_mismatches: u32§missing_options: u32§hmac_failures: u32§replay_detected: u32§parse_errors: u32§last_packet_time_ms: u32Trait Implementations§
Source§impl Clone for ReceiverStatistics
impl Clone for ReceiverStatistics
Source§fn clone(&self) -> ReceiverStatistics
fn clone(&self) -> ReceiverStatistics
Returns a duplicate 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 ReceiverStatistics
impl Debug for ReceiverStatistics
Source§impl Default for ReceiverStatistics
impl Default for ReceiverStatistics
Source§fn default() -> ReceiverStatistics
fn default() -> ReceiverStatistics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReceiverStatistics
impl RefUnwindSafe for ReceiverStatistics
impl Send for ReceiverStatistics
impl Sync for ReceiverStatistics
impl Unpin for ReceiverStatistics
impl UnsafeUnpin for ReceiverStatistics
impl UnwindSafe for ReceiverStatistics
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