mirror of
https://github.com/nushell/nushell.git
synced 2025-06-13 21:47:02 +02:00
- related #10698 # Description In my endeavor to make the `ShellError` less crowded I moved the job related errors into `ShellError::Job` with a `JobError` enum. Mostly I just moved the codes, errors and labels over to the new enum.
11 lines
408 B
Rust
11 lines
408 B
Rust
pub use crate::CallExt;
|
|
pub use nu_protocol::{
|
|
ByteStream, ByteStreamType, Category, ErrSpan, Example, IntoInterruptiblePipelineData,
|
|
IntoPipelineData, IntoSpanned, IntoValue, PipelineData, Record, ShellError, Signature, Span,
|
|
Spanned, SyntaxShape, Type, Value,
|
|
ast::CellPath,
|
|
engine::{Call, Command, EngineState, Stack, StateWorkingSet},
|
|
record,
|
|
shell_error::{io::*, job::*},
|
|
};
|