Struct pact_plugin_driver::plugin_models::PactPluginManifest  [−][src]
pub struct PactPluginManifest {
    pub plugin_dir: String,
    pub plugin_interface_version: u8,
    pub name: String,
    pub version: String,
    pub executable_type: String,
    pub minimum_required_version: Option<String>,
    pub entry_point: String,
    pub entry_points: HashMap<String, String>,
    pub dependencies: Option<Vec<PluginDependency>>,
    pub plugin_config: HashMap<String, Value>,
}Expand description
Manifest of a plugin
Fields
plugin_dir: StringDirectory were the plugin was loaded from
plugin_interface_version: u8Interface version supported by the plugin
name: StringPlugin name
version: StringPlugin version in semver format
executable_type: StringType if executable of the plugin
minimum_required_version: Option<String>Minimum required version for the executable type
entry_point: StringHow to invoke the plugin
entry_points: HashMap<String, String>Additional entry points for other operating systems (i.e. requiring a .bat file for Windows)
dependencies: Option<Vec<PluginDependency>>Dependencies required to invoke the plugin
plugin_config: HashMap<String, Value>Plugin specific config
Implementations
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for PactPluginManifest
impl Send for PactPluginManifest
impl Sync for PactPluginManifest
impl Unpin for PactPluginManifest
impl UnwindSafe for PactPluginManifest
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
Wrap the input message T in a tonic::Request
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
