Trait DisplayWithDb

Source
pub trait DisplayWithDb {
    // Required method
    fn format(&self, db: &dyn AnalyzerDb, f: &mut Formatter<'_>) -> Result;
}

Required Methods§

Source

fn format(&self, db: &dyn AnalyzerDb, f: &mut Formatter<'_>) -> Result

Implementations on Foreign Types§

Source§

impl<T> DisplayWithDb for &T
where T: DisplayWithDb + ?Sized,

Source§

fn format(&self, db: &dyn AnalyzerDb, f: &mut Formatter<'_>) -> Result

Implementors§