Name Description Size
mod.rs 47
syscalls.rs 3064
types.rs /bitflags/#externally-defined-flags> const _ = !0; } } #[cfg(linux_kernel)] bitflags! { /// `SPLICE_F_*` constants for use with [`splice`], [`vmsplice`], and /// [`tee`]. /// /// [`splice`]: crate::pipe::splice /// [`vmsplice`]: crate::pipe::splice /// [`tee`]: crate::pipe::tee #[repr(transparent)] #[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)] pub struct SpliceFlags: c::c_uint { /// `SPLICE_F_MOVE` const MOVE = c::SPLICE_F_MOVE; /// `SPLICE_F_NONBLOCK` const NONBLOCK = c::SPLICE_F_NONBLOCK; /// `SPLICE_F_MORE` const MORE = c::SPLICE_F_MORE; /// `SPLICE_F_GIFT` const GIFT = c::SPLICE_F_GIFT; /// <https://docs.rs/bitflags/ 3148