housekeeping(server): clean too-broad visibility markers and organize imports

This commit is contained in:
Skipper
2026-04-18 13:29:45 +02:00
parent bf63279f73
commit 6b572d0c86
72 changed files with 507 additions and 549 deletions

View File

@@ -1,7 +1,9 @@
use std::ops::{Deref, DerefMut};
use std::{any::type_name, fmt};
use memsafe::MemSafe;
use std::{
any::type_name,
fmt,
ops::{Deref, DerefMut},
};
pub trait SafeCellHandle<T> {
type CellRead<'a>: Deref<Target = T>