pub struct EvalOptions {
pub workspace: Option<PathBuf>,
}Expand description
Options that apply equally to both engine runs (before / after).
Fields§
§workspace: Option<PathBuf>Override the workspace root for the prod-probe. Same semantics
as --check --workspace PATH.
Trait Implementations§
Source§impl Clone for EvalOptions
impl Clone for EvalOptions
Source§fn clone(&self) -> EvalOptions
fn clone(&self) -> EvalOptions
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 EvalOptions
impl Debug for EvalOptions
Source§impl Default for EvalOptions
impl Default for EvalOptions
Source§fn default() -> EvalOptions
fn default() -> EvalOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EvalOptions
impl RefUnwindSafe for EvalOptions
impl Send for EvalOptions
impl Sync for EvalOptions
impl Unpin for EvalOptions
impl UnsafeUnpin for EvalOptions
impl UnwindSafe for EvalOptions
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