[][src]Struct dqcsim::host::reproduction::PluginReproduction

pub struct PluginReproduction {
    pub name: String,
    pub executable: PathBuf,
    pub script: Option<PathBuf>,
    pub functional: PluginProcessFunctionalConfiguration,
}

The contents of a plugin configuration in a reproduction file.

Fields

name: String

Name of the plugin, used to refer to the plugin by the log system.

executable: PathBuf

The executable filename of the plugin.

script: Option<PathBuf>

If specified, the executable is expected to be an interpreter, which is to execute the specified script file. If not specified, the executable is a native plugin.

functional: PluginProcessFunctionalConfiguration

The functional configuration of the plugin, i.e. the options configuring how the plugin behaves (besides the specification).

Trait Implementations

impl Clone for PluginReproduction[src]

impl Debug for PluginReproduction[src]

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

impl PartialEq<PluginReproduction> for PluginReproduction[src]

impl Serialize for PluginReproduction[src]

impl StructuralPartialEq for PluginReproduction[src]

Auto Trait Implementations

impl RefUnwindSafe for PluginReproduction

impl Send for PluginReproduction

impl Sync for PluginReproduction

impl Unpin for PluginReproduction

impl UnwindSafe for PluginReproduction

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>,