Enum binaryninja::BranchType
#[repr(u32)]pub enum BranchType {
UnconditionalBranch = 0,
FalseBranch = 1,
TrueBranch = 2,
CallDestination = 3,
FunctionReturn = 4,
SystemCall = 5,
IndirectBranch = 6,
ExceptionBranch = 7,
UnresolvedBranch = 127,
UserDefinedBranch = 128,
}
Variants§
UnconditionalBranch = 0
FalseBranch = 1
TrueBranch = 2
CallDestination = 3
FunctionReturn = 4
SystemCall = 5
IndirectBranch = 6
ExceptionBranch = 7
UnresolvedBranch = 127
UserDefinedBranch = 128
Trait Implementations§
§impl Clone for BNBranchType
impl Clone for BNBranchType
§fn clone(&self) -> BNBranchType
fn clone(&self) -> BNBranchType
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 more§impl Debug for BNBranchType
impl Debug for BNBranchType
§impl Hash for BNBranchType
impl Hash for BNBranchType
§impl PartialEq for BNBranchType
impl PartialEq for BNBranchType
§fn eq(&self, other: &BNBranchType) -> bool
fn eq(&self, other: &BNBranchType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for BNBranchType
impl Eq for BNBranchType
impl StructuralPartialEq for BNBranchType
Auto Trait Implementations§
impl RefUnwindSafe for BNBranchType
impl Send for BNBranchType
impl Sync for BNBranchType
impl Unpin for BNBranchType
impl UnwindSafe for BNBranchType
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