pub trait Justify { // Required method fn justify_line(&self, width: usize) -> String; }
Justify - expand line to given width.
use array_tool::string::Justify; "asd asdf asd".justify_line(14);
"asd asdf asd"