A drop-in replacement for TextView
with row cache. With complex layouts and thousands of rows,
this can improve performance significantly.
```rust use cursivecachedtext_view::CachedTextView;
fn main() { let mut view = CachedTextView::new("sample", 5); // the rest is the same as TextView } ```