pub enum SuccessorType {
FallThrough,
Branch(u64),
Intrinsic(Intrinsic),
}Expand description
A representation of the successor location in an il::Program after
execution of an il::Operation.
Variants§
Trait Implementations§
Source§impl Clone for SuccessorType
impl Clone for SuccessorType
Source§fn clone(&self) -> SuccessorType
fn clone(&self) -> SuccessorType
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for SuccessorType
impl RefUnwindSafe for SuccessorType
impl Send for SuccessorType
impl Sync for SuccessorType
impl Unpin for SuccessorType
impl UnwindSafe for SuccessorType
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