Struct wgsl_parser::expr::PostfixExpr  
source · pub struct PostfixExpr {
    pub accessor: Accessor,
    pub expr: Arc<Expr>,
    pub postfix: Option<Arc<PostfixExpr>>,
}Fields§
§accessor: Accessor§expr: Arc<Expr>§postfix: Option<Arc<PostfixExpr>>Trait Implementations§
source§impl Clone for PostfixExpr
 
impl Clone for PostfixExpr
source§fn clone(&self) -> PostfixExpr
 
fn clone(&self) -> PostfixExpr
Returns a copy 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 PostfixExpr
 
impl Debug for PostfixExpr
source§impl DebugLisp for PostfixExpr
 
impl DebugLisp for PostfixExpr
source§impl Parse for PostfixExpr
 
impl Parse for PostfixExpr
Auto Trait Implementations§
impl Freeze for PostfixExpr
impl RefUnwindSafe for PostfixExpr
impl Send for PostfixExpr
impl Sync for PostfixExpr
impl Unpin for PostfixExpr
impl UnwindSafe for PostfixExpr
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
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more