We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e18d034 commit bfdb522Copy full SHA for bfdb522
src/utils/html.rs
@@ -42,7 +42,11 @@ pub(crate) fn rewrite_rustdoc_html_stream<R>(
42
where
43
R: AsyncRead + Unpin + 'static,
44
{
45
+ let span = tracing::info_span!("rewrite_rustdoc_html_stream");
46
+
47
stream!({
48
+ let _guard = span.enter();
49
50
let (input_sender, input_receiver) = std::sync::mpsc::channel::<Option<Vec<u8>>>();
51
let (result_sender, mut result_receiver) = tokio::sync::mpsc::unbounded_channel::<Bytes>();
52
0 commit comments