pub struct ShellExecCommand {
pub command_string: String,
pub cwd_file_path: String,
}Expand description
Result of building a shell exec command
Fields§
§command_string: StringThe full command string to execute
cwd_file_path: StringPath to file containing the current working directory
Trait Implementations§
Source§impl Clone for ShellExecCommand
impl Clone for ShellExecCommand
Source§fn clone(&self) -> ShellExecCommand
fn clone(&self) -> ShellExecCommand
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 moreAuto Trait Implementations§
impl Freeze for ShellExecCommand
impl RefUnwindSafe for ShellExecCommand
impl Send for ShellExecCommand
impl Sync for ShellExecCommand
impl Unpin for ShellExecCommand
impl UnsafeUnpin for ShellExecCommand
impl UnwindSafe for ShellExecCommand
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