MCPcopy Index your code
hub / github.com/encounter/objdiff / Symbol

Class Symbol

objdiff-core/src/obj/mod.rs:266–279  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

264
265#[derive(Debug, Clone, Eq, PartialEq, Hash, Default)]
266pub struct Symbol {
267 pub name: String,
268 pub demangled_name: Option<String>,
269 pub normalized_name: Option<String>,
270 pub address: u64,
271 pub size: u64,
272 pub kind: SymbolKind,
273 pub section: Option<usize>,
274 pub flags: SymbolFlagSet,
275 /// Alignment (from Metrowerks .comment section)
276 pub align: Option<NonZeroU32>,
277 /// Original virtual address (from .note.split section)
278 pub virtual_address: Option<u64>,
279}
280
281#[derive(Debug)]
282pub struct Object {

Callers 6

fromMethod · 0.85
relocation_overrideMethod · 0.85
display_rowFunction · 0.85
fromMethod · 0.85
map_section_relocationsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected