pub struct MessageSummary {
pub message_index: usize,
pub key: String,
pub forecast_time: Option<i32>,
pub repr_template: Option<u16>,
pub payload_len: usize,
pub decode_ok: bool,
pub decoded_samples_len: Option<usize>,
}Expand description
Message-level summary for diagnostics and matching
Fields§
§message_index: usize§key: String§forecast_time: Option<i32>§repr_template: Option<u16>§payload_len: usize§decode_ok: bool§decoded_samples_len: Option<usize>Trait Implementations§
Source§impl Clone for MessageSummary
impl Clone for MessageSummary
Source§fn clone(&self) -> MessageSummary
fn clone(&self) -> MessageSummary
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 moreAuto Trait Implementations§
impl Freeze for MessageSummary
impl RefUnwindSafe for MessageSummary
impl Send for MessageSummary
impl Sync for MessageSummary
impl Unpin for MessageSummary
impl UnwindSafe for MessageSummary
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