pub enum SelectStatementChildren<'tree> {
CommunicationCase(Box<CommunicationCase<'tree>>),
DefaultCase(Box<DefaultCase<'tree>>),
}Variants§
CommunicationCase(Box<CommunicationCase<'tree>>)
DefaultCase(Box<DefaultCase<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for SelectStatementChildren<'tree>
impl<'tree> Clone for SelectStatementChildren<'tree>
Source§fn clone(&self) -> SelectStatementChildren<'tree>
fn clone(&self) -> SelectStatementChildren<'tree>
Returns a duplicate 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<'tree> Debug for SelectStatementChildren<'tree>
impl<'tree> Debug for SelectStatementChildren<'tree>
Source§impl<'tree> FromNode<'tree> for SelectStatementChildren<'tree>
impl<'tree> FromNode<'tree> for SelectStatementChildren<'tree>
Source§impl<'tree> PartialEq for SelectStatementChildren<'tree>
impl<'tree> PartialEq for SelectStatementChildren<'tree>
Source§fn eq(&self, other: &SelectStatementChildren<'tree>) -> bool
fn eq(&self, other: &SelectStatementChildren<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for SelectStatementChildren<'_>
impl Spanned for SelectStatementChildren<'_>
impl<'tree> Eq for SelectStatementChildren<'tree>
impl<'tree> StructuralPartialEq for SelectStatementChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for SelectStatementChildren<'tree>
impl<'tree> RefUnwindSafe for SelectStatementChildren<'tree>
impl<'tree> Send for SelectStatementChildren<'tree>
impl<'tree> Sync for SelectStatementChildren<'tree>
impl<'tree> Unpin for SelectStatementChildren<'tree>
impl<'tree> UnsafeUnpin for SelectStatementChildren<'tree>
impl<'tree> UnwindSafe for SelectStatementChildren<'tree>
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