const fn stdin_raw() -> StdinRaw ⓘ
🔬This is a nightly-only experimental API. (
libstd_sys_internals
)Expand description
Constructs a new raw handle to the standard input of this process.
The returned handle does not interact with any other handles created nor
handles returned by std::io::stdin
. Data buffered by the std::io::stdin
handles is not available to raw handles returned from this function.
The returned handle has no external synchronization or buffering.