MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / fmt

Method fmt

rust/src/section.rs:151–162  ·  view source on GitHub ↗
(&self, f: &mut fmt::Formatter)

Source from the content-addressed store, hash-verified

149
150impl 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
165impl ToOwned for Section {

Callers

nothing calls this directly

Calls 9

section_typeMethod · 0.80
finishMethod · 0.45
nameMethod · 0.45
address_rangeMethod · 0.45
semanticsMethod · 0.45
linked_sectionMethod · 0.45
alignMethod · 0.45
entry_sizeMethod · 0.45
auto_definedMethod · 0.45

Tested by

no test coverage detected