[][src]Trait lark_hir::FnBodyExtraDebug

pub trait FnBodyExtraDebug: AsRef<FnBodyTables> {
    fn extended_debug_with(
        &self,
        index: MetaIndex,
        debug: &mut DebugStruct
    ) -> Result; }

A trait used to add extra information to fn-body debugs. You can specialize it and you will get a callback for each item that lets you add extra fields etc.

Required methods

fn extended_debug_with(
    &self,
    index: MetaIndex,
    debug: &mut DebugStruct
) -> Result

Loading content...

Implementors

impl<T> FnBodyExtraDebug for T where
    T: AsRef<FnBodyTables>, 
[src]

Loading content...