pub trait DebugWithDbOverride<'db, Db: ?Sized> {
// Required method
fn fmt_override(&self, f: &mut Formatter<'_>, db: &'db Db) -> Result;
}Expand description
A flexible debug trait that takes the database as a type parameter instead of an associated type, allowing multiple implementations for the same type with different database types.