pub struct EndResult {
pub stream: Option<String>,
pub stream_compression: Option<StreamCompression>,
}Expand description
Result of Tracing.end when using stream transfer mode.
Fields§
§stream: Option<String>Stream handle for the trace data (when using stream transfer mode).
stream_compression: Option<StreamCompression>Compression type of the trace data in the stream.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EndResult
impl<'de> Deserialize<'de> for EndResult
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 EndResult
impl RefUnwindSafe for EndResult
impl Send for EndResult
impl Sync for EndResult
impl Unpin for EndResult
impl UnwindSafe for EndResult
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