pub struct SubshellCommand {
pub list: CompoundList,
pub loc: TokenLocation,
}Expand description
A subshell, which executes commands in a subshell.
Fields§
§list: CompoundListCommand list in the subshell
loc: TokenLocationLocation of the subshell
Trait Implementations§
Source§impl Clone for SubshellCommand
impl Clone for SubshellCommand
Source§fn clone(&self) -> SubshellCommand
fn clone(&self) -> SubshellCommand
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 Debug for SubshellCommand
impl Debug for SubshellCommand
Source§impl Display for SubshellCommand
impl Display for SubshellCommand
Source§impl SourceLocation for SubshellCommand
impl SourceLocation for SubshellCommand
Source§fn location(&self) -> Option<TokenLocation>
fn location(&self) -> Option<TokenLocation>
The location of the syntax item, when known
Auto Trait Implementations§
impl Freeze for SubshellCommand
impl RefUnwindSafe for SubshellCommand
impl Send for SubshellCommand
impl Sync for SubshellCommand
impl Unpin for SubshellCommand
impl UnwindSafe for SubshellCommand
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