mirror of
https://github.com/nushell/nushell.git
synced 2025-04-09 21:28:55 +02:00
# Description I spent a while trying to come up with a good name for what is currently `IoStream`. Looking back, this name is not the best, because it: 1. Implies that it is a stream, when it all it really does is specify the output destination for a stream/pipeline. 2. Implies that it handles input and output, when it really only handles output. So, this PR renames `IoStream` to `OutDest` instead, which should be more clear.
28 lines
504 B
Rust
28 lines
504 B
Rust
mod cached_file;
|
|
mod call_info;
|
|
mod capture_block;
|
|
mod command;
|
|
mod engine_state;
|
|
mod overlay;
|
|
mod pattern_match;
|
|
mod stack;
|
|
mod stack_out_dest;
|
|
mod state_delta;
|
|
mod state_working_set;
|
|
mod usage;
|
|
mod variable;
|
|
|
|
pub use cached_file::CachedFile;
|
|
|
|
pub use call_info::*;
|
|
pub use capture_block::*;
|
|
pub use command::*;
|
|
pub use engine_state::*;
|
|
pub use overlay::*;
|
|
pub use pattern_match::*;
|
|
pub use stack::*;
|
|
pub use stack_out_dest::*;
|
|
pub use state_delta::*;
|
|
pub use state_working_set::*;
|
|
pub use variable::*;
|