podman_rest_client/v5/models/
plugin_config_interface.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// PluginConfigInterface The interface between Docker and the plugin
4pub struct PluginConfigInterface {
5    /// Protocol to use for clients connecting to the plugin.
6    #[serde(rename = "ProtocolScheme")]
7    pub protocol_scheme: Option<String>,
8    /// socket
9    #[serde(rename = "Socket")]
10    pub socket: String,
11    /// types
12    #[serde(rename = "Types")]
13    pub types: Vec<crate::v5::models::PluginInterfaceType>,
14}