2 个版本
0.1.1 | 2020年4月22日 |
---|---|
0.1.0 | 2020年4月18日 |
#6 in #typewriter
11KB
248 代码行
表格字符串打字机。
此库用于创建格式化的字符串表格。它支持 ANSI 和 Unicode 字符,因此可以在列中安全地使用颜色和其他 ANSI 样式。此打字机主要用于命令行目的,但也可以用于一般字符串操作。
示例
let column = Column::new()
.set_width(20)
.set_text("Hello world!")
.set_text_pad('+');
let row = Row::new()
.add_column(column)
.to_string();
依赖项
约2.5–3.5MB
约55K SLoC