Struct glsl_lang::ast::CompoundStatementData
source · [−]pub struct CompoundStatementData {
pub statement_list: Vec<Node<StatementData>, Global>,
}
Expand description
Compound statement (with no new scope).
Fields
statement_list: Vec<Node<StatementData>, Global>
List of statements
Trait Implementations
sourceimpl Clone for CompoundStatementData
impl Clone for CompoundStatementData
sourcefn clone(&self) -> CompoundStatementData
fn clone(&self) -> CompoundStatementData
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 CompoundStatementData
impl Debug for CompoundStatementData
sourceimpl From<Node<CompoundStatementData>> for CompoundStatementData
impl From<Node<CompoundStatementData>> for CompoundStatementData
sourcefn from(node: Node<CompoundStatementData>) -> CompoundStatementData
fn from(node: Node<CompoundStatementData>) -> CompoundStatementData
Converts to this type from the input type.
sourceimpl FromIterator<Node<StatementData>> for CompoundStatementData
impl FromIterator<Node<StatementData>> for CompoundStatementData
sourcefn from_iter<T>(iter: T) -> CompoundStatementData where
T: IntoIterator<Item = Node<StatementData>>,
fn from_iter<T>(iter: T) -> CompoundStatementData where
T: IntoIterator<Item = Node<StatementData>>,
Creates a value from an iterator. Read more
sourceimpl NodeContent for CompoundStatementData
impl NodeContent for CompoundStatementData
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 CompoundStatementData
impl NodeContentDisplay for CompoundStatementData
sourceimpl PartialEq<CompoundStatementData> for CompoundStatementData
impl PartialEq<CompoundStatementData> for CompoundStatementData
sourcefn eq(&self, other: &CompoundStatementData) -> bool
fn eq(&self, other: &CompoundStatementData) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CompoundStatementData) -> bool
fn ne(&self, other: &CompoundStatementData) -> bool
This method tests for !=
.
impl StructuralPartialEq for CompoundStatementData
Auto Trait Implementations
impl RefUnwindSafe for CompoundStatementData
impl Send for CompoundStatementData
impl Sync for CompoundStatementData
impl Unpin for CompoundStatementData
impl UnwindSafe for CompoundStatementData
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