Struct docker_api_stubs::models::Plugin
source · [−]pub struct Plugin {
pub config: PluginConfigInlineItem,
pub enabled: bool,
pub id: Option<String>,
pub name: String,
pub plugin_reference: Option<String>,
pub settings: PluginSettingsInlineItem,
}
Expand description
A plugin for the Engine API
Fields
config: PluginConfigInlineItem
The config of a plugin.
enabled: bool
True if the plugin is running. False if the plugin is not running, only installed.
id: Option<String>
name: String
plugin_reference: Option<String>
plugin remote reference used to push/pull the plugin
settings: PluginSettingsInlineItem
Settings that can be modified by users.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Plugin
impl<'de> Deserialize<'de> for Plugin
sourcefn 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
impl StructuralPartialEq for Plugin
Auto Trait Implementations
impl RefUnwindSafe for Plugin
impl Send for Plugin
impl Sync for Plugin
impl Unpin for Plugin
impl UnwindSafe for Plugin
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more