pub enum AddressBase {
Register(RegisterOperand),
Variable(VariableSymbol),
}Expand description
Base location referenced by an address expression.
Variants§
Register(RegisterOperand)
Variable(VariableSymbol)
Trait Implementations§
Source§impl Clone for AddressBase
impl Clone for AddressBase
Source§fn clone(&self) -> AddressBase
fn clone(&self) -> AddressBase
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 AddressBase
impl Debug for AddressBase
Source§impl PartialEq for AddressBase
impl PartialEq for AddressBase
Source§impl PtxParser for AddressBase
impl PtxParser for AddressBase
fn parse(stream: &mut PtxTokenStream<'_>) -> Result<Self, PtxParseError>
Source§impl PtxUnparser for AddressBase
impl PtxUnparser for AddressBase
impl Eq for AddressBase
impl StructuralPartialEq for AddressBase
Auto Trait Implementations§
impl Freeze for AddressBase
impl RefUnwindSafe for AddressBase
impl Send for AddressBase
impl Sync for AddressBase
impl Unpin for AddressBase
impl UnwindSafe for AddressBase
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