cursive_core 0.3.4

Core components for the Cursive TUI
Documentation
//! Commonly used traits bundled for easy import.
//!
//! This module provides an easy way to import some traits.
//!
//! # Examples
//!
//! ```
//! use cursive_core::traits::*;
//! ```

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

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