(self)
| 119 | |
| 120 | #[inline] |
| 121 | pub(super) fn decode_raw_fd(self) -> RawFd { |
| 122 | let bits = self.decode_usize(); |
| 123 | let raw_fd = bits as RawFd; |
| 124 | |
| 125 | // Converting `raw` to `RawFd` should be lossless. |
| 126 | debug_assert_eq!(raw_fd as usize, bits); |
| 127 | |
| 128 | raw_fd |
| 129 | } |
| 130 | |
| 131 | #[inline] |
| 132 | pub(super) fn decode_c_int(self) -> c::c_int { |
no test coverage detected