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, __A> Decode<'__de, Binary, __A> for InstTargetwhere
__A: Allocator,
impl<'__de, __A> Decode<'__de, Binary, __A> for InstTargetwhere
__A: Allocator,
Source§const IS_BITWISE_DECODE: bool = false
const IS_BITWISE_DECODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§impl<'__de, __A> Decode<'__de, Text, __A> for InstTargetwhere
__A: Allocator,
impl<'__de, __A> Decode<'__de, Text, __A> for InstTargetwhere
__A: Allocator,
Source§const IS_BITWISE_DECODE: bool = false
const IS_BITWISE_DECODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
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§const IS_BITWISE_ENCODE: bool = false
const IS_BITWISE_ENCODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§type Encode = InstTarget
type Encode = InstTarget
The underlying type being encoded. Read more
Source§impl Encode<Text> for InstTarget
impl Encode<Text> for InstTarget
Source§const IS_BITWISE_ENCODE: bool = false
const IS_BITWISE_ENCODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§type Encode = InstTarget
type Encode = InstTarget
The underlying type being encoded. Read more
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