pub struct SessionOptions {
pub ignore_duplicate_defs: bool,
pub trace_scoreboard: bool,
pub verbosity: Verbosity,
pub opt_level: usize,
}
Expand description
A set of options for a session.
The arguments passed on the command line are intended to modify these values in order to configure the execution of the program.
Fields§
§ignore_duplicate_defs: bool
§trace_scoreboard: bool
Print a trace of scoreboard invocations for debugging purposes.
verbosity: Verbosity
The verbosity options.
opt_level: usize
The optimization level.
Trait Implementations§
Source§impl Debug for SessionOptions
impl Debug for SessionOptions
Source§impl Default for SessionOptions
impl Default for SessionOptions
Source§fn default() -> SessionOptions
fn default() -> SessionOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SessionOptions
impl RefUnwindSafe for SessionOptions
impl Send for SessionOptions
impl Sync for SessionOptions
impl Unpin for SessionOptions
impl UnwindSafe for SessionOptions
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