conch-runtime 0.1.2

A library for evaluating/executing programs written in the shell programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Platform specific extensions.

/// Extensions and implementations specific to Unix platforms.
#[cfg(unix)]
pub mod unix {
    /// Unix-specific extensions around general I/O.
    pub mod io {
        pub use sys::io::{EventedFileDesc, FileDescExt, MaybeEventedFd};
    }

    /// Unix-specific environment extensions
    pub mod env {
        pub use sys::env::{EventedAsyncIoEnv, ReadAsync, WriteAll};
    }
}