pub enum ShellCommandExpressionChildren<'tree> {
DynamicVariableName(Box<DynamicVariableName<'tree>>),
EscapeSequence(Box<EscapeSequence<'tree>>),
Expression(Box<Expression<'tree>>),
MemberAccessExpression(Box<MemberAccessExpression<'tree>>),
StringContent(Box<StringContent<'tree>>),
SubscriptExpression(Box<SubscriptExpression<'tree>>),
VariableName(Box<VariableName<'tree>>),
}Variants§
DynamicVariableName(Box<DynamicVariableName<'tree>>)
EscapeSequence(Box<EscapeSequence<'tree>>)
Expression(Box<Expression<'tree>>)
MemberAccessExpression(Box<MemberAccessExpression<'tree>>)
StringContent(Box<StringContent<'tree>>)
SubscriptExpression(Box<SubscriptExpression<'tree>>)
VariableName(Box<VariableName<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ShellCommandExpressionChildren<'tree>
impl<'tree> Clone for ShellCommandExpressionChildren<'tree>
Source§fn clone(&self) -> ShellCommandExpressionChildren<'tree>
fn clone(&self) -> ShellCommandExpressionChildren<'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 ShellCommandExpressionChildren<'tree>
impl<'tree> Debug for ShellCommandExpressionChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ShellCommandExpressionChildren<'tree>
impl<'tree> FromNode<'tree> for ShellCommandExpressionChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ShellCommandExpressionChildren<'tree>
impl<'tree> RefUnwindSafe for ShellCommandExpressionChildren<'tree>
impl<'tree> Send for ShellCommandExpressionChildren<'tree>
impl<'tree> Sync for ShellCommandExpressionChildren<'tree>
impl<'tree> Unpin for ShellCommandExpressionChildren<'tree>
impl<'tree> UnsafeUnpin for ShellCommandExpressionChildren<'tree>
impl<'tree> UnwindSafe for ShellCommandExpressionChildren<'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