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

Method fmt

rust/src/binary_reader.rs:92–98  ·  view source on GitHub ↗
(&self, f: &mut std::fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

90
91impl Debug for BinaryReader {
92 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
93 f.debug_struct("BinaryReader")
94 .field("offset", &self.offset())
95 .field("virtual_base", &self.virtual_base())
96 .field("endianness", &self.endianness())
97 .finish()
98 }
99}
100
101impl Seek for BinaryReader {

Callers

nothing calls this directly

Calls 4

finishMethod · 0.45
offsetMethod · 0.45
virtual_baseMethod · 0.45
endiannessMethod · 0.45

Tested by

no test coverage detected