| 31 | #[derive(Clone, Debug, Default)] |
| 32 | struct LiveLockGuards(FxHashSet<LockGuardId>); |
| 33 | |
| 34 | impl LiveLockGuards { |
| 35 | fn insert(&mut self, lockguard_id: LockGuardId) -> bool { |
| 36 | self.0.insert(lockguard_id) |
nothing calls this directly
no outgoing calls
no test coverage detected