pub struct CommandCall {
pub program: String,
pub args: Vec<String>,
pub dir: Option<String>,
}Expand description
A recorded command call for verification
Fields§
§program: String§args: Vec<String>§dir: Option<String>Trait Implementations§
Source§impl Clone for CommandCall
impl Clone for CommandCall
Source§fn clone(&self) -> CommandCall
fn clone(&self) -> CommandCall
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 CommandCall
impl RefUnwindSafe for CommandCall
impl Send for CommandCall
impl Sync for CommandCall
impl Unpin for CommandCall
impl UnwindSafe for CommandCall
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