[][src]Struct dqcsim::host::configuration::PluginProcessNonfunctionalConfiguration

pub struct PluginProcessNonfunctionalConfiguration {
    pub verbosity: LoglevelFilter,
    pub tee_files: Vec<TeeFileConfiguration>,
    pub stdout_mode: StreamCaptureMode,
    pub stderr_mode: StreamCaptureMode,
    pub accept_timeout: Timeout,
    pub shutdown_timeout: Timeout,
}

Structure describing the NONfunctional configuration of a plugin, i.e. the parameters that only affect how the plugin represents its output.

Fields

verbosity: LoglevelFilter

Specifies the verbosity of the messages sent to DQCsim.

tee_files: Vec<TeeFileConfiguration>

Specifies the tee file configuration for this plugin.

stdout_mode: StreamCaptureMode

Specifies how the stdout stream of the plugin should be connected.

stderr_mode: StreamCaptureMode

Specifies how the stderr stream of the plugin should be connected.

accept_timeout: Timeout

Specifies the timeout for connecting to the plugin after it has been spawned.

shutdown_timeout: Timeout

Specifies the timeout duration to wait for the plugin to shutdown after sending the abort request.

Trait Implementations

impl Clone for PluginProcessNonfunctionalConfiguration[src]

impl Debug for PluginProcessNonfunctionalConfiguration[src]

impl Default for PluginProcessNonfunctionalConfiguration[src]

impl<'de> Deserialize<'de> for PluginProcessNonfunctionalConfiguration[src]

impl PartialEq<PluginProcessNonfunctionalConfiguration> for PluginProcessNonfunctionalConfiguration[src]

impl Serialize for PluginProcessNonfunctionalConfiguration[src]

impl StructuralPartialEq for PluginProcessNonfunctionalConfiguration[src]

Auto Trait Implementations

impl RefUnwindSafe for PluginProcessNonfunctionalConfiguration

impl Send for PluginProcessNonfunctionalConfiguration

impl Sync for PluginProcessNonfunctionalConfiguration

impl Unpin for PluginProcessNonfunctionalConfiguration

impl UnwindSafe for PluginProcessNonfunctionalConfiguration

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,