mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
Temporarily rename Rust-native IoStreams to make way
The next commit will use this name.
This commit is contained in:
parent
6280fcc8c5
commit
aaa48e89a5
1 changed files with 3 additions and 3 deletions
|
@ -916,7 +916,7 @@ impl BufferedOutputStream {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct IoStreams<'a> {
|
pub struct NativeIoStreams<'a> {
|
||||||
// Streams for out and err.
|
// Streams for out and err.
|
||||||
pub out: &'a mut OutputStream,
|
pub out: &'a mut OutputStream,
|
||||||
pub err: &'a mut OutputStream,
|
pub err: &'a mut OutputStream,
|
||||||
|
@ -949,9 +949,9 @@ pub struct IoStreams<'a> {
|
||||||
job_group: Option<Rc<JobGroup>>,
|
job_group: Option<Rc<JobGroup>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> IoStreams<'a> {
|
impl<'a> NativeIoStreams<'a> {
|
||||||
pub fn new(out: &'a mut OutputStream, err: &'a mut OutputStream) -> Self {
|
pub fn new(out: &'a mut OutputStream, err: &'a mut OutputStream) -> Self {
|
||||||
IoStreams {
|
NativeIoStreams {
|
||||||
out,
|
out,
|
||||||
err,
|
err,
|
||||||
stdin_fd: -1,
|
stdin_fd: -1,
|
||||||
|
|
Loading…
Reference in a new issue