pub trait Debug {
// Provided method
fn debug(&self) -> Vec<DebugContent> { ... }
}
Expand description
Runtime representation of any chunk type. It is perfectly valid to not return anything if the data is not useful for debug views.
Provided Methods§
Sourcefn debug(&self) -> Vec<DebugContent>
fn debug(&self) -> Vec<DebugContent>
Render the elements of this chunk type.