pub fn spawn_view_thread<T: Tui + Send + 'static>(
    view: View<T>
) -> (Sender, JoinHandle<()>)
Expand description

Spawn a thread that will handle rendering contents to the View.

Panics

This may panic if there is an unexpected error in the processing of the View, i.e. a bug.