pub struct ParsedShellExpression {
pub expression: String,
pub commands: Vec<ShellCommand>,
}Fields§
§expression: String§commands: Vec<ShellCommand>Trait Implementations§
Source§impl Clone for ParsedShellExpression
impl Clone for ParsedShellExpression
Source§fn clone(&self) -> ParsedShellExpression
fn clone(&self) -> ParsedShellExpression
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 ParsedShellExpression
impl Debug for ParsedShellExpression
Source§impl PartialEq for ParsedShellExpression
impl PartialEq for ParsedShellExpression
impl Eq for ParsedShellExpression
impl StructuralPartialEq for ParsedShellExpression
Auto Trait Implementations§
impl Freeze for ParsedShellExpression
impl RefUnwindSafe for ParsedShellExpression
impl Send for ParsedShellExpression
impl Sync for ParsedShellExpression
impl Unpin for ParsedShellExpression
impl UnsafeUnpin for ParsedShellExpression
impl UnwindSafe for ParsedShellExpression
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