PrintWithSpaces

Trait PrintWithSpaces 

Source
pub trait PrintWithSpaces {
    // Required method
    fn print_with_spaces(&self, spaces: &str);
}
Expand description

Print Extension with Debug

Required Methods§

Source

fn print_with_spaces(&self, spaces: &str)

Print Slice [T] with spaces

Implementations on Foreign Types§

Source§

impl<T> PrintWithSpaces for [T]
where T: Debug,

Source§

fn print_with_spaces(&self, spaces: &str)

Implementors§