pub enum DeferredTarget {
Label(Label),
Constant(Constant),
}
Expand description
For RIP-relative addressing, keep track of the CodeSink
-specific target.
Variants§
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for DeferredTarget
impl<'arbitrary> Arbitrary<'arbitrary> for DeferredTarget
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreSource§impl Clone for DeferredTarget
impl Clone for DeferredTarget
Source§fn clone(&self) -> DeferredTarget
fn clone(&self) -> DeferredTarget
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 moreAuto Trait Implementations§
impl Freeze for DeferredTarget
impl RefUnwindSafe for DeferredTarget
impl Send for DeferredTarget
impl Sync for DeferredTarget
impl Unpin for DeferredTarget
impl UnwindSafe for DeferredTarget
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