Enum binaryninja::architecture::BranchInfo
source · pub enum BranchInfo {
Unconditional(u64),
False(u64),
True(u64),
Call(u64),
FunctionReturn,
SystemCall,
Indirect,
Exception,
Unresolved,
UserDefined,
}
Variants§
Unconditional(u64)
False(u64)
True(u64)
Call(u64)
FunctionReturn
SystemCall
Indirect
Exception
Unresolved
UserDefined
Trait Implementations§
source§impl Clone for BranchInfo
impl Clone for BranchInfo
source§fn clone(&self) -> BranchInfo
fn clone(&self) -> BranchInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BranchInfo
impl Debug for BranchInfo
source§impl Hash for BranchInfo
impl Hash for BranchInfo
source§impl PartialEq for BranchInfo
impl PartialEq for BranchInfo
source§fn eq(&self, other: &BranchInfo) -> bool
fn eq(&self, other: &BranchInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for BranchInfo
impl Eq for BranchInfo
impl StructuralPartialEq for BranchInfo
Auto Trait Implementations§
impl RefUnwindSafe for BranchInfo
impl Send for BranchInfo
impl Sync for BranchInfo
impl Unpin for BranchInfo
impl UnwindSafe for BranchInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more