stackfmt 0.1.1

Write formatted string to a buffer without alloc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# stackfmt
Creates formatted string from `format_args!()` like `alloc::fmt::format()` but 
without allocation:

```rust
let mut buf = [0u8; 64];
let formatted: &str = stackfmt::fmt_truncate(&mut buf, format_args!("Hello{}", 42));
assert_eq!(formatted, "Hello42");
```

Implemented based on this SO answer [https://stackoverflow.com/a/50201632/601298](https://stackoverflow.com/a/50201632/601298)