pub enum BranchTarget {
Dynamic,
Absolute(u32),
Return(u32),
}
Variants§
Trait Implementations§
Source§impl Clone for BranchTarget
impl Clone for BranchTarget
Source§fn clone(&self) -> BranchTarget
fn clone(&self) -> BranchTarget
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 moreSource§impl Debug for BranchTarget
impl Debug for BranchTarget
Source§impl PartialEq for BranchTarget
impl PartialEq for BranchTarget
impl Copy for BranchTarget
impl StructuralPartialEq for BranchTarget
Auto Trait Implementations§
impl Freeze for BranchTarget
impl RefUnwindSafe for BranchTarget
impl Send for BranchTarget
impl Sync for BranchTarget
impl Unpin for BranchTarget
impl UnwindSafe for BranchTarget
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