pub enum CommandInner {
Simple(SimpleCommand),
Subshell(Box<SequentialList>),
}
Variants§
Trait Implementations§
Source§impl Clone for CommandInner
impl Clone for CommandInner
Source§fn clone(&self) -> CommandInner
fn clone(&self) -> CommandInner
Returns a copy 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 CommandInner
impl Debug for CommandInner
Source§impl PartialEq for CommandInner
impl PartialEq for CommandInner
impl Eq for CommandInner
impl StructuralPartialEq for CommandInner
Auto Trait Implementations§
impl Freeze for CommandInner
impl RefUnwindSafe for CommandInner
impl Send for CommandInner
impl Sync for CommandInner
impl Unpin for CommandInner
impl UnwindSafe for CommandInner
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