Add archetypal to Access Debug impl (#12947)

# Objective

- The `archetypal` field in `Access` doesn't get printed in debug output

## Solution

- Add the field to the impl
This commit is contained in:
NiseVoid 2024-04-13 08:06:48 +02:00 committed by GitHub
parent 70ce6f110b
commit 57719fc998
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -74,6 +74,7 @@ impl<T: SparseSetIndex + fmt::Debug> fmt::Debug for Access<T> {
.field("writes", &FormattedBitSet::<T>::new(&self.writes))
.field("reads_all", &self.reads_all)
.field("writes_all", &self.writes_all)
.field("archetypal", &FormattedBitSet::<T>::new(&self.archetypal))
.finish()
}
}