Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
library
/
std
/
src
/
os
/
wasi
/
io
/
mod.rs
blob: 5f9a735db085ebf816113a986ccc3c554d468989 [
file
] [
log
] [
blame
]
//! WASI-specific extensions to general I/O primitives.
#![
stable
(
feature
=
"io_safety_wasi"
,
since
=
"1.65.0"
)]
#[
stable
(
feature
=
"io_safety_wasi"
,
since
=
"1.65.0"
)]
pub
use
crate
::
os
::
fd
::*;
// Tests for this module
#[
cfg
(
test
)]
mod
tests
;