pub struct ToolArgs {
pub tool: ValgrindTool,
pub output_paths: Vec<OsString>,
pub log_path: Option<OsString>,
pub error_exitcode: String,
pub verbose: bool,
pub trace_children: bool,
pub fair_sched: FairSched,
pub other: Vec<String>,
}Available on crate feature
runner only.Fields§
§tool: ValgrindTool§output_paths: Vec<OsString>§log_path: Option<OsString>§error_exitcode: String§verbose: bool§trace_children: bool§fair_sched: FairSched§other: Vec<String>Implementations§
Source§impl ToolArgs
impl ToolArgs
pub fn try_from_raw_args(tool: ValgrindTool, raw_args: RawArgs) -> Result<Self>
pub fn set_output_arg<T>( &mut self, output_path: &ToolOutputPath, modifier: Option<T>, )
pub fn set_log_arg<T>( &mut self, output_path: &ToolOutputPath, modifier: Option<T>, )
pub fn to_vec(&self) -> Vec<OsString>
Trait Implementations§
impl Eq for ToolArgs
impl StructuralPartialEq for ToolArgs
Auto Trait Implementations§
impl Freeze for ToolArgs
impl RefUnwindSafe for ToolArgs
impl Send for ToolArgs
impl Sync for ToolArgs
impl Unpin for ToolArgs
impl UnwindSafe for ToolArgs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more