DebugDbUpcast

Trait DebugDbUpcast 

Source
pub trait DebugDbUpcast<'db, T: ?Sized> {
    // Required method
    fn debug_db_upcast(&'db self) -> &'db T;
}
Expand description

A trait that allows upcasting the database to the type T.

Required Methods§

Source

fn debug_db_upcast(&'db self) -> &'db T

Implementors§

Source§

impl<'db, T: ?Sized> DebugDbUpcast<'db, T> for T