1
Fork 0

Reformat use declarations.

The previous commit updated `rustfmt.toml` appropriately. This commit is
the outcome of running `x fmt --all` with the new formatting options.
This commit is contained in:
Nicholas Nethercote 2024-07-29 08:13:50 +10:00
parent 118f9350c5
commit 84ac80f192
1865 changed files with 8367 additions and 9199 deletions

View file

@ -81,19 +81,15 @@
//!
//! [mm]: https://github.com/rust-lang/measureme/
use crate::fx::FxHashMap;
use crate::outline;
use std::borrow::Borrow;
use std::collections::hash_map::Entry;
use std::error::Error;
use std::fmt::Display;
use std::fs;
use std::intrinsics::unlikely;
use std::path::Path;
use std::process;
use std::sync::Arc;
use std::time::{Duration, Instant};
use std::{fs, process};
pub use measureme::EventId;
use measureme::{EventIdBuilder, Profiler, SerializableString, StringId};
@ -101,6 +97,9 @@ use parking_lot::RwLock;
use smallvec::SmallVec;
use tracing::warn;
use crate::fx::FxHashMap;
use crate::outline;
bitflags::bitflags! {
#[derive(Clone, Copy)]
struct EventFilter: u16 {