Name Description Size
mod.rs 98
syscalls.rs linux_raw syscalls supporting `rustix::time`. # Safety See the `rustix::backend` module documentation for details. 7956
types.rs /bitflags/#externally-defined-flags> const _ = !0; } } bitflags! { /// `TFD_TIMER_*` flags for use with [`timerfd_settime`]. /// /// [`timerfd_settime`]: crate::time::timerfd_settime #[repr(transparent)] #[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)] pub struct TimerfdTimerFlags: c::c_uint { /// `TFD_TIMER_ABSTIME` #[doc(alias = "TFD_TIMER_ABSTIME")] const ABSTIME = linux_raw_sys::general::TFD_TIMER_ABSTIME; /// `TFD_TIMER_CANCEL_ON_SET` #[doc(alias = "TFD_TIMER_CANCEL_ON_SET")] const CANCEL_ON_SET = linux_raw_sys::general::TFD_TIMER_CANCEL_ON_SET; /// <https://docs.rs/bitflags/ 3763