pub struct RegisterOperand {
pub name: String,
pub component: Option<String>,
pub span: Span,
}Expand description
Register operand starting with % (e.g., %r1).
Fields§
§name: String§component: Option<String>Optional component suffix (e.g., .x, .y, .z, .w)
span: SpanImplementations§
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 (const: unstable) · 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
impl Eq for RegisterOperand
Source§impl PartialEq for RegisterOperand
impl PartialEq for RegisterOperand
Source§fn eq(&self, other: &RegisterOperand) -> bool
fn eq(&self, other: &RegisterOperand) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PtxParser for RegisterOperand
impl PtxParser for RegisterOperand
Source§fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
Returns a parser function that can parse an instance of
Self.Source§impl PtxUnparser for RegisterOperand
impl PtxUnparser for RegisterOperand
Source§fn unparse_tokens(&self, tokens: &mut Vec<PtxToken>)
fn unparse_tokens(&self, tokens: &mut Vec<PtxToken>)
Append the PTX token sequence representing
self to tokens.Source§fn unparse_tokens_mode(&self, tokens: &mut Vec<PtxToken>, spaced: bool)
fn unparse_tokens_mode(&self, tokens: &mut Vec<PtxToken>, spaced: bool)
Append tokens, optionally inserting spacing tokens for readability.
Source§fn to_tokens(&self) -> Vec<PtxToken>
fn to_tokens(&self) -> Vec<PtxToken>
Convenience helper that returns the serialized PTX token stream.
Source§fn to_tokens_spaced(&self) -> Vec<PtxToken>
fn to_tokens_spaced(&self) -> Vec<PtxToken>
Convenience helper that returns the serialized PTX token stream with
spacing/newlines inserted for readability.
Source§impl Serialize for RegisterOperand
impl Serialize for RegisterOperand
Source§impl Spanned for RegisterOperand
impl Spanned for RegisterOperand
impl StructuralPartialEq for RegisterOperand
Source§impl TreeDisplay for RegisterOperand
impl TreeDisplay for RegisterOperand
Source§fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
Display this node in tree format. Read more
Auto Trait Implementations§
impl Freeze for RegisterOperand
impl RefUnwindSafe for RegisterOperand
impl Send for RegisterOperand
impl Sync for RegisterOperand
impl Unpin for RegisterOperand
impl UnsafeUnpin 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