[][src]Function display_utils::indent_tab

pub fn indent_tab(depth: usize) -> impl Display

Indent to a given depth using the tab character.

This is a shortcut for repeat("\t", depth); please see that function if you wish to use a different indent string.

assert_eq!(indent_tab(2).to_string(), "\t\t");