| 39 | // XXX: AVAILABLE should be a bool, but we can't yet have it as a bool and just cast it to usize |
| 40 | #[derive(Copy, Clone, PartialEq, Eq)] |
| 41 | pub struct DirFd<'fd, const AVAILABLE: usize>(pub(crate) [crt_fd::Borrowed<'fd>; AVAILABLE]); |
| 42 | |
| 43 | impl<const AVAILABLE: usize> Default for DirFd<'_, AVAILABLE> { |
| 44 | fn default() -> Self { |