[][src]Struct rtlola_interpreter::EvalConfig

pub struct EvalConfig {
    pub source: EventSourceConfig,
    pub statistics: Statistics,
    pub verbosity: Verbosity,
    pub output_channel: OutputChannel,
    pub evaluator: EvaluatorChoice,
    pub mode: ExecutionMode,
    pub time_presentation: TimeRepresentation,
}

Fields

source: EventSourceConfigstatistics: Statisticsverbosity: Verbosityoutput_channel: OutputChannelevaluator: EvaluatorChoicemode: ExecutionModetime_presentation: TimeRepresentation

Implementations

impl EvalConfig[src]

pub fn new(
    source: EventSourceConfig,
    statistics: Statistics,
    verbosity: Verbosity,
    output: OutputChannel,
    evaluator: EvaluatorChoice,
    mode: ExecutionMode,
    time_presentation: TimeRepresentation
) -> Self
[src]

pub fn debug() -> Self[src]

pub fn release(
    path: String,
    output: OutputChannel,
    evaluator: EvaluatorChoice,
    mode: ExecutionMode,
    time_presentation: TimeRepresentation
) -> Self
[src]

pub fn api(time_representation: TimeRepresentation) -> Self[src]

Trait Implementations

impl Clone for EvalConfig[src]

impl Debug for EvalConfig[src]

impl Default for EvalConfig[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> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.