The buffering backend for any Cursive backend. Mainly it is created to address a flickering issue with Termion backend.
Inspired by the comment on the similar issue on Termion itself.
```rust
let backendinit = || -> std::io::Result
let mut app = Cursive::new(); app.tryrunwith(backend_init).ok()?; ```