Trait wallswitch::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§