pub struct TexHandler3Optional {
pub handle: GeneralOperand,
pub sampler: Option<GeneralOperand>,
pub coords: GeneralOperand,
pub span: Range<usize>,
}Expand description
Texture handler with optional sampler operand, e.g. [tex, coords] or [tex, sampler, coords]
Fields§
§handle: GeneralOperand§sampler: Option<GeneralOperand>§coords: GeneralOperand§span: Range<usize>Implementations§
Trait Implementations§
Source§impl Clone for TexHandler3Optional
impl Clone for TexHandler3Optional
Source§fn clone(&self) -> TexHandler3Optional
fn clone(&self) -> TexHandler3Optional
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 TexHandler3Optional
impl Debug for TexHandler3Optional
Source§impl PartialEq for TexHandler3Optional
impl PartialEq for TexHandler3Optional
Source§impl PtxParser for TexHandler3Optional
impl PtxParser for TexHandler3Optional
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 TexHandler3Optional
impl PtxUnparser for TexHandler3Optional
impl Eq for TexHandler3Optional
impl StructuralPartialEq for TexHandler3Optional
Auto Trait Implementations§
impl Freeze for TexHandler3Optional
impl RefUnwindSafe for TexHandler3Optional
impl Send for TexHandler3Optional
impl Sync for TexHandler3Optional
impl Unpin for TexHandler3Optional
impl UnwindSafe for TexHandler3Optional
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