pub trait PrettyDebugWithSource: Sized {
    fn pretty_debug(&self, source: &str) -> DebugDocBuilder;

    fn refined_pretty_debug(
        &self,
        _refine: PrettyDebugRefineKind,
        source: &str
    ) -> DebugDocBuilder { ... }
fn debug(&self, source: impl Into<Text>) -> String
    where
        Self: Clone
, { ... }
fn debuggable(self, source: impl Into<Text>) -> DebuggableWithSource<Self> { ... } }

Required methods

Provided methods

Implementations on Foreign Types

Implementors