mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-12 20:23:35 +00:00
16 lines
286 B
Rust
16 lines
286 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 With;
|
||
|
|
||
|
#[doc(no_inline)]
|
||
|
pub use view::{Boxable, Finder, Identifiable, View};
|