pub struct SpectreSimulator {
pub spectre_cmd: String,
pub spectre_args: Vec<String>,
pub timeout: u64,
pub work_dir: PathBuf,
pub output_format: String,
pub remote: bool,
pub ssh_runner: Option<SSHRunner>,
pub remote_work_dir: Option<String>,
pub keep_remote_files: bool,
}Fields§
§spectre_cmd: String§spectre_args: Vec<String>§timeout: u64§work_dir: PathBuf§output_format: String§remote: bool§ssh_runner: Option<SSHRunner>§remote_work_dir: Option<String>§keep_remote_files: boolImplementations§
Auto Trait Implementations§
impl Freeze for SpectreSimulator
impl RefUnwindSafe for SpectreSimulator
impl Send for SpectreSimulator
impl Sync for SpectreSimulator
impl Unpin for SpectreSimulator
impl UnsafeUnpin for SpectreSimulator
impl UnwindSafe for SpectreSimulator
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