pub enum TWOther {
MessageDiscarded,
DeviceInfo {
clock_id: u32,
ticks_per_sec: u32,
device_id: [u8; 16],
},
}Expand description
Tracing Wire “Other” messages
This type contains messages that are not directly sourced from tracing events, but are sometimes necessary during establishing or maintaining of the connection.
Variants§
MessageDiscarded
One or more events have been discarded without being transmitted via a Packet.
This is used when the local buffer has become full, and it was no longer possible
to transmit the stream of events uninterrupted.
DeviceInfo
A collection of metadata items about the device that is producing trace events.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TWOther
impl<'de> Deserialize<'de> for TWOther
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TWOther
impl RefUnwindSafe for TWOther
impl Send for TWOther
impl Sync for TWOther
impl Unpin for TWOther
impl UnwindSafe for TWOther
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