cursive 0.14.1

A TUI (Text User Interface) library focused on ease-of-use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Commonly used traits bundled for easy import.
//!
//! This module provides an easy way to import some traits.
//!
//! # Examples
//!
//! ```
//! use cursive::traits::*;
//! ```

#[doc(no_inline)]
#[allow(deprecated)]
pub use crate::view::{
    Boxable, Finder, Identifiable, Nameable, Resizable, Scrollable, View,
};

#[doc(no_inline)]
pub use crate::With;