Struct wgsl_parser::decl::VarDecl
source · pub struct VarDecl {
pub attributes: Option<AttributeList>,
pub storage: Token,
pub storage_qualifiers: Option<Arc<[Token]>>,
pub name: Token,
pub ty: Option<TypeDecl>,
pub assignment: Option<Expr>,
pub semicolon: Token,
}Fields§
§attributes: Option<AttributeList>§storage: Token§storage_qualifiers: Option<Arc<[Token]>>§name: Token§ty: Option<TypeDecl>§assignment: Option<Expr>§semicolon: TokenTrait Implementations§
Auto Trait Implementations§
impl Freeze for VarDecl
impl RefUnwindSafe for VarDecl
impl Send for VarDecl
impl Sync for VarDecl
impl Unpin for VarDecl
impl UnwindSafe for VarDecl
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