Struct binaryninja::debuginfo::DebugFunctionInfo
[−]pub struct DebugFunctionInfo<S: BnStrCompatible> { /* private fields */ }
Expand description
Collates ground-truth function-external attributes for use in BinaryNinja’s internal analysis.
When contributing function info, provide only what you know - BinaryNinja will figure out everything else that it can, as it usually does.
Functions will not be created if an address is not provided, but will be able to be queried from debug info for later user analysis.
Implementations
Trait Implementations
impl From<&BNDebugFunctionInfo> for DebugFunctionInfo<String>
impl From<&BNDebugFunctionInfo> for DebugFunctionInfo<String>
fn from(raw: &BNDebugFunctionInfo) -> Self
fn from(raw: &BNDebugFunctionInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl<S> RefUnwindSafe for DebugFunctionInfo<S>where
S: RefUnwindSafe,
impl<S> Send for DebugFunctionInfo<S>where
S: Send,
impl<S> Sync for DebugFunctionInfo<S>where
S: Sync,
impl<S> Unpin for DebugFunctionInfo<S>where
S: Unpin,
impl<S> UnwindSafe for DebugFunctionInfo<S>where
S: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more