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