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

Method fmt

rust/src/segment.rs:175–182  ·  view source on GitHub ↗
(&self, f: &mut Formatter<'_>)

Source from the content-addressed store, hash-verified

173
174impl 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
185impl ToOwned for Segment {

Callers

nothing calls this directly

Calls 5

parent_backingMethod · 0.80
finishMethod · 0.45
address_rangeMethod · 0.45
auto_definedMethod · 0.45
flagsMethod · 0.45

Tested by

no test coverage detected