mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-24 01:46:31 +00:00
16 lines
473 B
Rust
16 lines
473 B
Rust
//! Commonly used imports, conveniently grouped.
|
|
//!
|
|
//! To easily import a bunch of commonly-used definitions, import this bundle:
|
|
//!
|
|
//! ```
|
|
//! use cursive::prelude::*;
|
|
//! ```
|
|
|
|
pub use {Cursive, Printer, With};
|
|
pub use event::{Event, Key};
|
|
pub use view::{BoxView, Button, Checkbox, Dialog, EditView, FullView, IdView,
|
|
KeyEventView, LinearLayout, ListView, SelectView, Selector,
|
|
TextView, View};
|
|
pub use vec::Vec2;
|
|
pub use menu::MenuTree;
|