Missing Default implementation for TracingRwLock.

This commit is contained in:
2021-05-08 17:10:56 +02:00
parent 514a84f3b5
commit 9e7f2d6a61

View File

@@ -184,7 +184,7 @@ impl<'a, T: fmt::Display> fmt::Display for TracingMutexGuard<'a, T> {
}
/// Wrapper for [`std::sync::RwLock`].
#[derive(Debug)]
#[derive(Debug, Default)]
pub struct TracingRwLock<T> {
inner: RwLock<T>,
id: MutexId,