pub struct PreparedBashScript {
pub script: String,
pub env: Vec<(String, String)>,
pub cwd: Option<String>,
pub stdin: Option<String>,
pub sandbox: ResolvedBashSandbox,
}Expand description
Prepared bash script data, ready for execution.
Fields§
§script: String§env: Vec<(String, String)>§cwd: Option<String>§stdin: Option<String>§sandbox: ResolvedBashSandboxTrait Implementations§
Source§impl Clone for PreparedBashScript
impl Clone for PreparedBashScript
Source§fn clone(&self) -> PreparedBashScript
fn clone(&self) -> PreparedBashScript
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 PreparedBashScript
impl RefUnwindSafe for PreparedBashScript
impl Send for PreparedBashScript
impl Sync for PreparedBashScript
impl Unpin for PreparedBashScript
impl UnsafeUnpin for PreparedBashScript
impl UnwindSafe for PreparedBashScript
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