(&self, f: &mut fmt::Formatter)
| 149 | |
| 150 | impl fmt::Debug for Section { |
| 151 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 152 | f.debug_struct("Section") |
| 153 | .field("name", &self.name()) |
| 154 | .field("address_range", &self.address_range()) |
| 155 | .field("section_type", &self.section_type()) |
| 156 | .field("semantics", &self.semantics()) |
| 157 | .field("linked_section", &self.linked_section()) |
| 158 | .field("align", &self.align()) |
| 159 | .field("entry_size", &self.entry_size()) |
| 160 | .field("auto_defined", &self.auto_defined()) |
| 161 | .finish() |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | impl ToOwned for Section { |
nothing calls this directly
no test coverage detected