Struct tramex_tools::data::Trace
source · pub struct Trace {
pub timestamp: u64,
pub layer: Layer,
pub additional_infos: AdditionalInfos,
pub hexa: Vec<u8>,
pub text: Option<Vec<String>>,
}
Expand description
Data structure to store Trace of the application.
Fields§
§timestamp: u64
Message type. Timestamp of the message.
layer: Layer
Layer of the message.
additional_infos: AdditionalInfos
Message type.
hexa: Vec<u8>
Hexadecimal representation of the message.
text: Option<Vec<String>>
Text representation of the message from the API
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Trace
impl Send for Trace
impl Sync for Trace
impl Unpin for Trace
impl UnwindSafe for Trace
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