pub struct TexHandler2 {
pub operands: [GeneralOperand; 2],
pub span: Span,
}Expand description
Texture handler with 2 operands, e.g. [%r1, %r2]
Fields§
§operands: [GeneralOperand; 2]§span: SpanImplementations§
Trait Implementations§
Source§impl Clone for TexHandler2
impl Clone for TexHandler2
Source§fn clone(&self) -> TexHandler2
fn clone(&self) -> TexHandler2
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 TexHandler2
impl Debug for TexHandler2
impl Eq for TexHandler2
Source§impl PartialEq for TexHandler2
impl PartialEq for TexHandler2
Source§fn eq(&self, other: &TexHandler2) -> bool
fn eq(&self, other: &TexHandler2) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PtxParser for TexHandler2
impl PtxParser for TexHandler2
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 TexHandler2
impl PtxUnparser for TexHandler2
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 TexHandler2
impl Serialize for TexHandler2
Source§impl Spanned for TexHandler2
impl Spanned for TexHandler2
impl StructuralPartialEq for TexHandler2
Auto Trait Implementations§
impl Freeze for TexHandler2
impl RefUnwindSafe for TexHandler2
impl Send for TexHandler2
impl Sync for TexHandler2
impl Unpin for TexHandler2
impl UnsafeUnpin for TexHandler2
impl UnwindSafe for TexHandler2
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