mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-23 17:35:00 +00:00
e51be07e5d
Run `cargo fix --edition` and update Cargo.toml
16 lines
312 B
Rust
16 lines
312 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 crate::view::{Boxable, Finder, Identifiable, Scrollable, View};
|
|
|
|
#[doc(no_inline)]
|
|
pub use crate::With;
|