pub struct CommandOp {
pub command: String,
pub args: Vec<String>,
pub working_dir: Option<String>,
}Expand description
Describes a shell command intercepted by middleware.
Fields§
§command: String§args: Vec<String>§working_dir: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CommandOp
impl RefUnwindSafe for CommandOp
impl Send for CommandOp
impl Sync for CommandOp
impl Unpin for CommandOp
impl UnsafeUnpin for CommandOp
impl UnwindSafe for CommandOp
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