We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Legacy minitrace-macro code converts
minitrace-macro
fn f() {}
into
fn f<>() { let __guard = minitrace::local::LocalSpan::enter_with_local_parent("f"); {} }
There are two issues:
__guard
<>
This arose in the course of writing unit tests for issue #113
The text was updated successfully, but these errors were encountered:
Voided by PR #127 rejection.
Sorry, something went wrong.
No branches or pull requests
Legacy
minitrace-macro
code convertsinto
There are two issues:
__guard
should be inside the block expression - correct?<>
This arose in the course of writing unit tests for issue #113
The text was updated successfully, but these errors were encountered: