pub enum AddressOperand {
Array(VariableSymbol, Immediate),
ImmediateAddress(Immediate),
Offset(AddressBase, Option<AddressOffset>),
}Expand description
Representation of an address operand.
Variants§
Array(VariableSymbol, Immediate)
base[immIndex]
ImmediateAddress(Immediate)
Immediate address value, e.g., [0xffff], unsigned, 32-bit
Offset(AddressBase, Option<AddressOffset>)
Offset address with optional displacement, e.g., [base + offset] and [base]
Trait Implementations§
Source§impl Clone for AddressOperand
impl Clone for AddressOperand
Source§fn clone(&self) -> AddressOperand
fn clone(&self) -> AddressOperand
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 AddressOperand
impl Debug for AddressOperand
Source§impl PartialEq for AddressOperand
impl PartialEq for AddressOperand
Source§impl PtxParser for AddressOperand
impl PtxParser for AddressOperand
Source§fn parse(stream: &mut PtxTokenStream<'_>) -> Result<Self, PtxParseError>
fn parse(stream: &mut PtxTokenStream<'_>) -> Result<Self, PtxParseError>
Parse an instance of
Self from the token stream.Source§impl PtxUnparser for AddressOperand
impl PtxUnparser for AddressOperand
impl Eq for AddressOperand
impl StructuralPartialEq for AddressOperand
Auto Trait Implementations§
impl Freeze for AddressOperand
impl RefUnwindSafe for AddressOperand
impl Send for AddressOperand
impl Sync for AddressOperand
impl Unpin for AddressOperand
impl UnwindSafe for AddressOperand
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