(&self, f: &mut fmt::Formatter<'_>)
| 125 | |
| 126 | impl fmt::Debug for Owned { |
| 127 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 128 | f.debug_tuple("crt_fd::Owned") |
| 129 | .field(&self.as_raw()) |
| 130 | .finish() |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | #[derive(Copy, Clone)] |