rustix 0.36.9

Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls
Documentation
1
2
3
4
5
6
7
//! Random-related operations.

#[cfg(any(linux_raw, all(libc, target_os = "linux")))]
mod getrandom;

#[cfg(any(linux_raw, all(libc, target_os = "linux")))]
pub use getrandom::{getrandom, GetRandomFlags};