pub enum TraceEventType {
ControlMessageSent,
ControlMessageReceived,
DataStreamOpened,
DataStreamClosed,
ObjectSent,
ObjectReceived,
SessionEstablished,
SessionClosed,
Error,
}Expand description
Type of trace event.
Variants§
ControlMessageSent
ControlMessageReceived
DataStreamOpened
DataStreamClosed
ObjectSent
ObjectReceived
SessionEstablished
SessionClosed
Error
Trait Implementations§
Source§impl Clone for TraceEventType
impl Clone for TraceEventType
Source§fn clone(&self) -> TraceEventType
fn clone(&self) -> TraceEventType
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 TraceEventType
impl Debug for TraceEventType
Source§impl<'de> Deserialize<'de> for TraceEventType
impl<'de> Deserialize<'de> for TraceEventType
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
Source§impl PartialEq for TraceEventType
impl PartialEq for TraceEventType
Source§impl Serialize for TraceEventType
impl Serialize for TraceEventType
impl Eq for TraceEventType
impl StructuralPartialEq for TraceEventType
Auto Trait Implementations§
impl Freeze for TraceEventType
impl RefUnwindSafe for TraceEventType
impl Send for TraceEventType
impl Sync for TraceEventType
impl Unpin for TraceEventType
impl UnsafeUnpin for TraceEventType
impl UnwindSafe for TraceEventType
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