We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chroot
Rust 1.56 stablizes std::os::unix::fs::chroot. Should cap-std add a chroot function that can be called on a Dir?
std::os::unix::fs::chroot
Dir
It'd be implemented in terms of fchroot on platforms that have that, or chroot on /proc/self/fd/{} on Linux.
fchroot
/proc/self/fd/{}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Rust 1.56 stablizes
std::os::unix::fs::chroot
. Should cap-std add achroot
function that can be called on aDir
?It'd be implemented in terms of
fchroot
on platforms that have that, orchroot
on/proc/self/fd/{}
on Linux.The text was updated successfully, but these errors were encountered: