pub struct TracingCompleteEvent {
pub stream: Option<String>,
pub stream_compression: Option<StreamCompression>,
pub stream_format: Option<StreamFormat>,
}Expand description
Event: Tracing.tracingComplete
Signals that tracing is stopped and there is no more data to collect.
Fields§
§stream: Option<String>Stream handle for trace data (when using stream transfer mode).
stream_compression: Option<StreamCompression>Compression type of the trace data in the stream.
stream_format: Option<StreamFormat>Stream format of the trace data in the stream.
Trait Implementations§
Source§impl Clone for TracingCompleteEvent
impl Clone for TracingCompleteEvent
Source§fn clone(&self) -> TracingCompleteEvent
fn clone(&self) -> TracingCompleteEvent
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 TracingCompleteEvent
impl Debug for TracingCompleteEvent
Source§impl<'de> Deserialize<'de> for TracingCompleteEvent
impl<'de> Deserialize<'de> for TracingCompleteEvent
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 TracingCompleteEvent
impl RefUnwindSafe for TracingCompleteEvent
impl Send for TracingCompleteEvent
impl Sync for TracingCompleteEvent
impl Unpin for TracingCompleteEvent
impl UnwindSafe for TracingCompleteEvent
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