]> git.proxmox.com Git - rustc.git/blobdiff - src/libstd/sys/unix/ext/mod.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / libstd / sys / unix / ext / mod.rs
index 98bc90dd4e13246694c14531affe2fd53cd47012..c221f7c8cfe2429d224e61fceee7a543149f28c6 100644 (file)
 
 //! Experimental extensions to `std` for Unix platforms.
 //!
-//! For now, this module is limited to extracting file descriptors,
-//! but its functionality will grow over time.
+//! Provides access to platform-level information on Unix platforms, and
+//! exposes Unix-specific functions that would otherwise be inappropriate as
+//! part of the core `std` library.
+//!
+//! It exposes more ways to deal with platform-specific strings (`OsStr`,
+//! `OsString`), allows to set permissions more granularly, extract low-level
+//! file descriptors from files and sockets, and has platform-specific helpers
+//! for spawning processes.
 //!
 //! # Examples
 //!