1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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;