pub enum BeginChildren<'tree> {
Statement(Box<Statement<'tree>>),
Else(Box<Else<'tree>>),
EmptyStatement(Box<EmptyStatement<'tree>>),
Ensure(Box<Ensure<'tree>>),
Rescue(Box<Rescue<'tree>>),
}Variants§
Statement(Box<Statement<'tree>>)
Else(Box<Else<'tree>>)
EmptyStatement(Box<EmptyStatement<'tree>>)
Ensure(Box<Ensure<'tree>>)
Rescue(Box<Rescue<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for BeginChildren<'tree>
impl<'tree> Clone for BeginChildren<'tree>
Source§fn clone(&self) -> BeginChildren<'tree>
fn clone(&self) -> BeginChildren<'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 BeginChildren<'tree>
impl<'tree> Debug for BeginChildren<'tree>
Source§impl<'tree> FromNode<'tree> for BeginChildren<'tree>
impl<'tree> FromNode<'tree> for BeginChildren<'tree>
Source§impl<'tree> PartialEq for BeginChildren<'tree>
impl<'tree> PartialEq for BeginChildren<'tree>
Source§impl Spanned for BeginChildren<'_>
impl Spanned for BeginChildren<'_>
impl<'tree> Eq for BeginChildren<'tree>
impl<'tree> StructuralPartialEq for BeginChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for BeginChildren<'tree>
impl<'tree> RefUnwindSafe for BeginChildren<'tree>
impl<'tree> Send for BeginChildren<'tree>
impl<'tree> Sync for BeginChildren<'tree>
impl<'tree> Unpin for BeginChildren<'tree>
impl<'tree> UnsafeUnpin for BeginChildren<'tree>
impl<'tree> UnwindSafe for BeginChildren<'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