pub enum BranchKind {
Unresolved,
Unconditional(u64),
False(u64),
True(u64),
Call(u64),
FunctionReturn,
SystemCall,
Indirect,
Exception,
UserDefined,
}
Variants§
Unresolved
Unconditional(u64)
False(u64)
True(u64)
Call(u64)
FunctionReturn
SystemCall
Indirect
Exception
UserDefined
Trait Implementations§
source§impl Clone for BranchKind
impl Clone for BranchKind
source§fn clone(&self) -> BranchKind
fn clone(&self) -> BranchKind
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 BranchKind
impl Debug for BranchKind
source§impl Default for BranchKind
impl Default for BranchKind
source§fn default() -> BranchKind
fn default() -> BranchKind
Returns the “default value” for a type. Read more
source§impl From<BranchKind> for BranchInfo
impl From<BranchKind> for BranchInfo
source§fn from(value: BranchKind) -> Self
fn from(value: BranchKind) -> Self
Converts to this type from the input type.
source§impl Hash for BranchKind
impl Hash for BranchKind
source§impl PartialEq for BranchKind
impl PartialEq for BranchKind
impl Copy for BranchKind
impl Eq for BranchKind
impl StructuralPartialEq for BranchKind
Auto Trait Implementations§
impl Freeze for BranchKind
impl RefUnwindSafe for BranchKind
impl Send for BranchKind
impl Sync for BranchKind
impl Unpin for BranchKind
impl UnwindSafe for BranchKind
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