pub enum WithInitializerChildren<'tree> {
Expression(Box<Expression<'tree>>),
Identifier(Box<Identifier<'tree>>),
}Variants§
Expression(Box<Expression<'tree>>)
Identifier(Box<Identifier<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for WithInitializerChildren<'tree>
impl<'tree> Clone for WithInitializerChildren<'tree>
Source§fn clone(&self) -> WithInitializerChildren<'tree>
fn clone(&self) -> WithInitializerChildren<'tree>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WithInitializerChildren<'tree>
impl<'tree> Debug for WithInitializerChildren<'tree>
impl<'tree> Eq for WithInitializerChildren<'tree>
Source§impl<'tree> FromNode<'tree> for WithInitializerChildren<'tree>
impl<'tree> FromNode<'tree> for WithInitializerChildren<'tree>
Source§impl<'tree> PartialEq for WithInitializerChildren<'tree>
impl<'tree> PartialEq for WithInitializerChildren<'tree>
Source§impl Spanned for WithInitializerChildren<'_>
impl Spanned for WithInitializerChildren<'_>
impl<'tree> StructuralPartialEq for WithInitializerChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for WithInitializerChildren<'tree>
impl<'tree> RefUnwindSafe for WithInitializerChildren<'tree>
impl<'tree> Send for WithInitializerChildren<'tree>
impl<'tree> Sync for WithInitializerChildren<'tree>
impl<'tree> Unpin for WithInitializerChildren<'tree>
impl<'tree> UnsafeUnpin for WithInitializerChildren<'tree>
impl<'tree> UnwindSafe for WithInitializerChildren<'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