cursive/src/traits.rs
Alexandre Bury 8acc08f340 Rustfmt
2018-06-10 23:29:19 -07:00

15 lines
285 B
Rust

//! Commonly used traits bundled for easy import.
//!
//! This module provides an easy way to import some traits.
//!
//! # Examples
//!
//! ```
//! use cursive::traits::*;
//! ```
#[doc(no_inline)]
pub use view::{Boxable, Finder, Identifiable, View};
#[doc(no_inline)]
pub use With;