Enum glsl_lang::ast::JumpStatementData
source · [−]pub enum JumpStatementData {
Continue,
Break,
Return(Option<Box<Node<ExprData>, Global>>),
Discard,
}
Expand description
Jump statement.
Variants
Continue
continue
jump statement
Break
break
jump statement
Return(Option<Box<Node<ExprData>, Global>>)
return
jump statement
Discard
discard
jump statement
Trait Implementations
sourceimpl Clone for JumpStatementData
impl Clone for JumpStatementData
sourcefn clone(&self) -> JumpStatementData
fn clone(&self) -> JumpStatementData
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 JumpStatementData
impl Debug for JumpStatementData
sourceimpl From<Node<JumpStatementData>> for JumpStatementData
impl From<Node<JumpStatementData>> for JumpStatementData
sourcefn from(node: Node<JumpStatementData>) -> JumpStatementData
fn from(node: Node<JumpStatementData>) -> JumpStatementData
Converts to this type from the input type.
sourceimpl NodeContent for JumpStatementData
impl NodeContent for JumpStatementData
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 JumpStatementData
impl NodeContentDisplay for JumpStatementData
sourceimpl PartialEq<JumpStatementData> for JumpStatementData
impl PartialEq<JumpStatementData> for JumpStatementData
sourcefn eq(&self, other: &JumpStatementData) -> bool
fn eq(&self, other: &JumpStatementData) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &JumpStatementData) -> bool
fn ne(&self, other: &JumpStatementData) -> bool
This method tests for !=
.
impl StructuralPartialEq for JumpStatementData
Auto Trait Implementations
impl RefUnwindSafe for JumpStatementData
impl Send for JumpStatementData
impl Sync for JumpStatementData
impl Unpin for JumpStatementData
impl UnwindSafe for JumpStatementData
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