(&self, f: &mut fmt::Formatter<'_>)
| 154 | |
| 155 | impl<'a> fmt::Debug for RawDirEntry<'a> { |
| 156 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 157 | let mut f = f.debug_struct("RawDirEntry"); |
| 158 | f.field("file_name", &self.file_name()); |
| 159 | f.field("file_type", &self.file_type()); |
| 160 | f.field("ino", &self.ino()); |
| 161 | f.field("next_entry_cookie", &self.next_entry_cookie()); |
| 162 | f.finish() |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | impl<'a> RawDirEntry<'a> { |
nothing calls this directly
no test coverage detected