5 releases (3 breaking)
0.4.0 | Jan 24, 2024 |
---|---|
0.3.0 | Dec 16, 2023 |
0.2.0 | Mar 16, 2023 |
0.1.1 | Dec 24, 2022 |
0.1.0 | Nov 25, 2022 |
#5 in #indent
391 downloads per month
11KB
158 lines
This crate is a indented_text_writer type allowing you to append anything that satisfies the
ToBytes
trait to it. This includes things such as string slices, owned strings, byte slices,
and characters for example.
like : C#
Example
write code:
#[cfg(test)]
use super::IndentedTextWriter;
fn main() {
let is_lf = true;
let mut writer = IndentedTextWriter::new(" ",1024, '{', '}', is_lf);
writer.write_line("struct Data {");
writer.write_line("name: String,");
writer.write_line("value: i32");
writer.write_line("}");
println!("{}",writer.string().unwrap());
}
Result:
struct Data {
name: String,
value: i32
}
forked by https://github.com/gsquire/string-builder
License
MIT