pub trait DebugExt {
// Required method
fn debug(&self) -> DebugTokens<'_>;
}Expand description
Extension trait that adds .debug() to proc_macro2::TokenStream.
§Example
ⓘ
use zyn::debug::DebugExt;
let output: String = tokens.debug().raw();