(&mut self, fd: RawFd)
| 157 | } |
| 158 | |
| 159 | pub fn contains(&mut self, fd: RawFd) -> bool { |
| 160 | unsafe { platform::FD_ISSET(fd, self.0.as_mut_ptr()) } |
| 161 | } |
| 162 | |
| 163 | pub fn clear(&mut self) { |
| 164 | unsafe { platform::FD_ZERO(self.0.as_mut_ptr()) }; |
no test coverage detected