You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
structFmtBitset(u64);impl fmt::DebugforFmtBitset{fnfmt(&self,f:&mut fmt::Formatter<'_>) -> fmt::Result{letmut set = f.debug_set();for bit in0..64{// if the `bit`-th bit is set, add it to the debug setifself.0&(1 << bit) != 0{
set.entry(&bit);}}
set.finish()}}
The text was updated successfully, but these errors were encountered:
rust-analyzer version: rust-analyzer version: 0.3.2089-standalone (0f7f68d 2024-08-27)
rustc version: rustc 1.80.0 (051478957 2024-07-21)
editor or extension: VS Code
relevant settings: N/A
repository link (if public, optional): https://github.com/tokio-rs/tracing
code snippet to reproduce:
The text was updated successfully, but these errors were encountered: