rustix 0.37.18

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

#[cfg(any(target_os = "android", target_os = "linux"))]
mod getrandom;

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