dlt_parse 0.10.1

A library for parsing the "Diagnostic Log and Trace" network protocol (currently without payload interpretation).
Documentation
1
2
3
4
5
6
7
8
use super::StorageHeader;
use crate::DltPacketSlice;

#[derive(Clone, Debug, Eq, PartialEq)]
pub struct StorageSlice<'a> {
    pub storage_header: StorageHeader,
    pub packet: DltPacketSlice<'a>,
}