[][src]Struct creator_tools::types::PluginConfiguration

pub struct PluginConfiguration {
    pub plugin_dynamic_register_function: Option<String>,
    pub plugin_dynamic_registration: Option<bool>,
    pub plugin_factories: Option<BTreeMap<String, String>>,
    pub plugin_types: Option<BTreeMap<String, String>>,
    pub plugin_unload_function: Option<String>,
}

Plugin Configuration.

Fields

plugin_dynamic_register_function: Option<String>

The function to use when dynamically registering a plugin.

plugin_dynamic_registration: Option<bool>

A Boolean value indicating whether the host loads this plugin.

plugin_factories: Option<BTreeMap<String, String>>

The interfaces supported by the plugin for static registration.

plugin_types: Option<BTreeMap<String, String>>

One or more groups of interfaces supported by the plugin for static registration.

plugin_unload_function: Option<String>

The name of the function to call to unload the plugin code from memory.

Trait Implementations

impl Clone for PluginConfiguration[src]

impl Debug for PluginConfiguration[src]

impl Default for PluginConfiguration[src]

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

impl PartialEq<PluginConfiguration> for PluginConfiguration[src]

impl Serialize for PluginConfiguration[src]

impl StructuralPartialEq for PluginConfiguration[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> 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>,