pub trait DebugWithContext {
    fn fmt_with_context(
        &self,
        formatter: &mut Formatter<'_>,
        context: &Context
    ) -> Result; fn with_context<'a, 'c>(
        &'a self,
        context: &'c Context
    ) -> WithContext<'a, 'c, Self> { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors