pub enum InstTarget {
Address(InstAddress),
Field(InstAddress, usize),
TupleField(InstAddress, usize),
}
Expand description
The target of an operation.
Variants§
Address(InstAddress)
Target is an offset to the current call frame.
Field(InstAddress, usize)
Target the field of an object.
TupleField(InstAddress, usize)
Target a tuple field.
Trait Implementations§
Source§impl Clone for InstTarget
impl Clone for InstTarget
Source§fn clone(&self) -> InstTarget
fn clone(&self) -> InstTarget
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 InstTarget
impl Debug for InstTarget
Source§impl<'de> Decode<'de, Binary> for InstTarget
impl<'de> Decode<'de, Binary> for InstTarget
Source§impl<'de> Decode<'de, Text> for InstTarget
impl<'de> Decode<'de, Text> for InstTarget
Source§impl<'de> Deserialize<'de> for InstTarget
impl<'de> Deserialize<'de> for InstTarget
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for InstTarget
impl Display for InstTarget
Source§impl Encode<Binary> for InstTarget
impl Encode<Binary> for InstTarget
Source§impl Encode<Text> for InstTarget
impl Encode<Text> for InstTarget
Source§impl Serialize for InstTarget
impl Serialize for InstTarget
Source§impl TryClone for InstTarget
impl TryClone for InstTarget
impl Copy for InstTarget
Auto Trait Implementations§
impl Freeze for InstTarget
impl RefUnwindSafe for InstTarget
impl Send for InstTarget
impl Sync for InstTarget
impl Unpin for InstTarget
impl UnwindSafe for InstTarget
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)