(oflags: OFlags)
| 403 | /// Convert an `OFlags` into a `u64` for use in the `open_how` struct. |
| 404 | #[inline] |
| 405 | pub(crate) fn oflags_for_open_how(oflags: OFlags) -> u64 { |
| 406 | u64::from(oflags_bits(oflags)) |
| 407 | } |
| 408 | |
| 409 | impl<'a, Num: ArgNumber> From<crate::fs::FallocateFlags> for ArgReg<'a, Num> { |
| 410 | #[inline] |
nothing calls this directly
no test coverage detected