(&self, f: &mut Formatter<'_>)
| 173 | |
| 174 | impl Debug for Segment { |
| 175 | fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { |
| 176 | f.debug_struct("Segment") |
| 177 | .field("address_range", &self.address_range()) |
| 178 | .field("parent_backing", &self.parent_backing()) |
| 179 | .field("auto_defined", &self.auto_defined()) |
| 180 | .field("flags", &self.flags()) |
| 181 | .finish() |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | impl ToOwned for Segment { |
nothing calls this directly
no test coverage detected