//! Plugin configuration types.
useserde::{Deserialize, Serialize};/// SDK plugin configuration.
////// Currently only local plugins are supported via the "local" type.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]pubstructSdkPluginConfig{/// Plugin type (currently only "local").
#[serde(rename ="type")]pubplugin_type: String,
/// Path to the plugin directory.
pubpath: String,
}