mod.rs |
|
47 |
syscalls.rs |
linux_raw syscalls supporting `rustix::pipe`.
# Safety
See the `rustix::backend` module documentation for details. |
3666 |
types.rs |
/bitflags/#externally-defined-flags>
const _ = !0;
}
}
bitflags! {
/// `SPLICE_F_*` constants for use with [`splice`], [`vmsplice`], and
/// [`tee`].
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
pub struct SpliceFlags: c::c_uint {
/// `SPLICE_F_MOVE`
const MOVE = linux_raw_sys::general::SPLICE_F_MOVE;
/// `SPLICE_F_NONBLOCK`
const NONBLOCK = linux_raw_sys::general::SPLICE_F_NONBLOCK;
/// `SPLICE_F_MORE`
const MORE = linux_raw_sys::general::SPLICE_F_MORE;
/// `SPLICE_F_GIFT`
const GIFT = linux_raw_sys::general::SPLICE_F_GIFT;
/// <https://docs.rs/bitflags/ |
2510 |