Module higher_level

Source
Available on doc only.
Expand description

Functions which provide higher-level functionality are out of scope for rustix.

These functions are provided by typical libc implementations, but are higher-level than the simple syscall-like functions that rustix focuses on. They could be implemented as a separate library built on top of rustix, rather than being part of rustix itself. This module contains an incomplete list of such functions.

Functionsยง

asctime
See the module comment.
asctime_r
See the module comment.
closefrom
See rustix-openpty.
ctime
See the module comment.
ctime_r
See the module comment.
execv
See the module comment.
execvp
See the module comment.
execvpe
See the module comment.
gethostbyname
See the module comment.
getifaddrs
See the module comment.
getpwent
See the module comment.
getpwnam
See the module comment.
getpwnam_r
See the module comment.
getpwuid
See the module comment.
getpwuid_r
See the module comment.
gmtime
See the module comment.
gmtime_r
See the module comment.
isatty
See std::io::IsTerminal.
localtime
See the module comment.
localtime_r
See the module comment.
login_tty
See rustix-openpty.
mktime
See the module comment.
openpty
See rustix-openpty.
wordexp
See the module comment.