pub trait DebugWithDb<Db: ?Sized> {
    fn fmt(&self, f: &mut Formatter<'_>, db: &Db) -> Result;

    fn debug<'me, 'db>(&'me self, db: &'me Db) -> DebugWith<'me, Db>
    where
        Self: Sized + 'me
, { ... } fn into_debug<'me, 'db>(self, db: &'me Db) -> DebugWith<'me, Db>
    where
        Self: Sized + 'me
, { ... } }

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§