std -> core

This commit is contained in:
2025-10-13 21:30:39 -06:00
parent 2bd654249d
commit 96f260d02d
+1 -1
View File
@@ -78,7 +78,7 @@ impl<T> Id<T> {
}
impl<T> fmt::Debug for Id<T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("Id")
.field("T", &core::any::type_name::<T>())
.field("id", &self.id)