//! Module defining the `TabbedDisplay` trait for formatted output with
//! indentation.
/// Trait for displaying objects with indentation.
pubtraitTabbedDisplay{/// Formats the object with the given indentation level.
////// # Errors
////// Returns an error if formatting fails.
fnfmt_tabbed(&self, f:&mutcore::fmt::Formatter<'_>, tab_count:usize)->core::fmt::Result;}