Enum glsl_lang::ast::ExternalDeclarationData
source · [−]pub enum ExternalDeclarationData {
Preprocessor(Node<PreprocessorData>),
FunctionDefinition(Node<FunctionDefinitionData>),
Declaration(Node<DeclarationData>),
}
Expand description
External declaration.
Variants
Preprocessor(Node<PreprocessorData>)
Preprocessor directive
FunctionDefinition(Node<FunctionDefinitionData>)
Function definition
Declaration(Node<DeclarationData>)
Declaration
Trait Implementations
sourceimpl Clone for ExternalDeclarationData
impl Clone for ExternalDeclarationData
sourcefn clone(&self) -> ExternalDeclarationData
fn clone(&self) -> ExternalDeclarationData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ExternalDeclarationData
impl Debug for ExternalDeclarationData
sourceimpl From<Node<ExternalDeclarationData>> for ExternalDeclarationData
impl From<Node<ExternalDeclarationData>> for ExternalDeclarationData
sourcefn from(node: Node<ExternalDeclarationData>) -> ExternalDeclarationData
fn from(node: Node<ExternalDeclarationData>) -> ExternalDeclarationData
Converts to this type from the input type.
sourceimpl NodeContent for ExternalDeclarationData
impl NodeContent for ExternalDeclarationData
sourcefn 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
sourcefn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
Add span information to a syntax node
sourceimpl NodeContentDisplay for ExternalDeclarationData
impl NodeContentDisplay for ExternalDeclarationData
sourceimpl PartialEq<ExternalDeclarationData> for ExternalDeclarationData
impl PartialEq<ExternalDeclarationData> for ExternalDeclarationData
sourcefn eq(&self, other: &ExternalDeclarationData) -> bool
fn eq(&self, other: &ExternalDeclarationData) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ExternalDeclarationData) -> bool
fn ne(&self, other: &ExternalDeclarationData) -> bool
This method tests for !=
.
impl StructuralPartialEq for ExternalDeclarationData
Auto Trait Implementations
impl RefUnwindSafe for ExternalDeclarationData
impl Send for ExternalDeclarationData
impl Sync for ExternalDeclarationData
impl Unpin for ExternalDeclarationData
impl UnwindSafe for ExternalDeclarationData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> NodeDisplay for T where
T: NodeContentDisplay,
impl<T> NodeDisplay for T where
T: NodeContentDisplay,
sourcefn display(&self) -> NodeDisplayWrapper<'_, T>
fn display(&self) -> NodeDisplayWrapper<'_, T>
Obtain a display wrapper for the current node