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§
Source§impl SpectreSimulator
impl SpectreSimulator
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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