(&self)
| 249 | impl AsRef<Path> for DecInt { |
| 250 | #[inline] |
| 251 | fn as_ref(&self) -> &Path { |
| 252 | let as_os_str: &OsStr = OsStrExt::from_bytes(self.as_bytes()); |
| 253 | Path::new(as_os_str) |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | impl fmt::Debug for DecInt { |
no test coverage detected