(self)
| 51 | impl<'fd> DirFd<'fd, 1> { |
| 52 | #[inline(always)] |
| 53 | pub(crate) fn get_opt(self) -> Option<crt_fd::Borrowed<'fd>> { |
| 54 | let [fd] = self.0; |
| 55 | (fd != DEFAULT_DIR_FD).then_some(fd) |
| 56 | } |
| 57 | |
| 58 | #[inline] |
| 59 | pub(crate) fn raw_opt(self) -> Option<i32> { |