mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
d684a5bc1e
Add `traits` module instead
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};
|