pub struct DiffTestConfig {
pub timeout_secs: u64,
pub gcc_path: String,
pub rustc_path: String,
pub compare_stderr: bool,
}Expand description
Configuration for differential testing.
Fields§
§timeout_secs: u64Timeout in seconds for each binary execution
gcc_path: StringPath to the gcc compiler
rustc_path: StringPath to the rustc compiler
compare_stderr: boolWhether to also compare stderr output
Trait Implementations§
Source§impl Clone for DiffTestConfig
impl Clone for DiffTestConfig
Source§fn clone(&self) -> DiffTestConfig
fn clone(&self) -> DiffTestConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DiffTestConfig
impl Debug for DiffTestConfig
Auto Trait Implementations§
impl Freeze for DiffTestConfig
impl RefUnwindSafe for DiffTestConfig
impl Send for DiffTestConfig
impl Sync for DiffTestConfig
impl Unpin for DiffTestConfig
impl UnsafeUnpin for DiffTestConfig
impl UnwindSafe for DiffTestConfig
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