pub struct RegisterOperand {
pub name: String,
pub span: Range<usize>,
}Expand description
Register operand starting with % (e.g., %r1).
Fields§
§name: String§span: Range<usize>Implementations§
Trait Implementations§
Source§impl Clone for RegisterOperand
impl Clone for RegisterOperand
Source§fn clone(&self) -> RegisterOperand
fn clone(&self) -> RegisterOperand
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 RegisterOperand
impl Debug for RegisterOperand
Source§impl PartialEq for RegisterOperand
impl PartialEq for RegisterOperand
Source§impl PtxParser for RegisterOperand
impl PtxParser for RegisterOperand
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 RegisterOperand
impl PtxUnparser for RegisterOperand
impl Eq for RegisterOperand
impl StructuralPartialEq for RegisterOperand
Auto Trait Implementations§
impl Freeze for RegisterOperand
impl RefUnwindSafe for RegisterOperand
impl Send for RegisterOperand
impl Sync for RegisterOperand
impl Unpin for RegisterOperand
impl UnwindSafe for RegisterOperand
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