[][src]Struct moore::SessionOptions

pub struct SessionOptions {
    pub ignore_duplicate_defs: bool,
    pub trace_scoreboard: bool,
    pub verbosity: Verbosity,
    pub opt_level: usize,
}

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: booltrace_scoreboard: bool

Print a trace of scoreboard invocations for debugging purposes.

verbosity: Verbosity

The verbosity options.

opt_level: usize

The optimization level.

Trait Implementations

impl Debug for SessionOptions[src]

impl Default for SessionOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.