Enum glsl_lang_types::ast::ConditionData
source · pub enum ConditionData {
Expr(Expr),
Assignment(Box<FullySpecifiedType>, Identifier, Initializer),
}Expand description
Condition.
Variants§
Expr(Expr)
An expression
Assignment(Box<FullySpecifiedType>, Identifier, Initializer)
A variable declaration used as a condition
Trait Implementations§
source§impl Clone for ConditionData
impl Clone for ConditionData
source§fn clone(&self) -> ConditionData
fn clone(&self) -> ConditionData
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 ConditionData
impl Debug for ConditionData
source§impl From<Node<ConditionData>> for ConditionData
impl From<Node<ConditionData>> for ConditionData
source§fn from(node: Node<ConditionData>) -> Self
fn from(node: Node<ConditionData>) -> Self
Converts to this type from the input type.
source§impl NodeContent for ConditionData
impl NodeContent for ConditionData
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 ConditionData
impl NodeContentDisplay for ConditionData
source§impl PartialEq for ConditionData
impl PartialEq for ConditionData
source§fn eq(&self, other: &ConditionData) -> bool
fn eq(&self, other: &ConditionData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ConditionData
Auto Trait Implementations§
impl RefUnwindSafe for ConditionData
impl Send for ConditionData
impl Sync for ConditionData
impl Unpin for ConditionData
impl UnwindSafe for ConditionData
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