- --
```rust
use string_alloc::String;
use std::alloc::Global;
let mut s = String::from_str_in("hello", Global);
s.push_str(" world");
```
Apache-2.0
An allocator-aware, `no_std`-compatible implementation of `String<A>` that mirrors `std::string::String`.