Enum glsl_lang_types::ast::DeclarationData
source · pub enum DeclarationData {
FunctionPrototype(FunctionPrototype),
InitDeclaratorList(InitDeclaratorList),
Precision(PrecisionQualifier, TypeSpecifier),
Block(Block),
Invariant(Identifier),
}Expand description
A declaration.
Variants§
FunctionPrototype(FunctionPrototype)
Function prototype declaration
InitDeclaratorList(InitDeclaratorList)
List of declarators and initializers
Precision(PrecisionQualifier, TypeSpecifier)
Precision declaration
Block(Block)
Block declaration
Invariant(Identifier)
Invariant declaration
Trait Implementations§
source§impl Clone for DeclarationData
impl Clone for DeclarationData
source§fn clone(&self) -> DeclarationData
fn clone(&self) -> DeclarationData
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 DeclarationData
impl Debug for DeclarationData
source§impl From<Node<DeclarationData>> for DeclarationData
impl From<Node<DeclarationData>> for DeclarationData
source§fn from(node: Node<DeclarationData>) -> Self
fn from(node: Node<DeclarationData>) -> Self
Converts to this type from the input type.
source§impl NodeContent for DeclarationData
impl NodeContent for DeclarationData
source§fn into_node<T>(self) -> Node<T>where
T: From<Self> + NodeContent,
fn into_node<T>(self) -> Node<T>where T: From<Self> + NodeContent,
Convert the contents into a node
source§fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
Add span information to a syntax node
source§impl NodeContentDisplay for DeclarationData
impl NodeContentDisplay for DeclarationData
source§impl PartialEq for DeclarationData
impl PartialEq for DeclarationData
source§fn eq(&self, other: &DeclarationData) -> bool
fn eq(&self, other: &DeclarationData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeclarationData
Auto Trait Implementations§
impl RefUnwindSafe for DeclarationData
impl Send for DeclarationData
impl Sync for DeclarationData
impl Unpin for DeclarationData
impl UnwindSafe for DeclarationData
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