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

Method target

rust/src/architecture.rs:129–137  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

127 }
128
129 pub fn target(&self) -> Option<u64> {
130 match self.kind {
131 BranchKind::Unconditional(target) => Some(target),
132 BranchKind::False(target) => Some(target),
133 BranchKind::True(target) => Some(target),
134 BranchKind::Call(target) => Some(target),
135 _ => None,
136 }
137 }
138}
139
140impl From<BranchInfo> for BNBranchType {

Callers 1

fromMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected