Struct docker_api::models::PluginConfigInlineItem
source · [−]pub struct PluginConfigInlineItem {Show 16 fields
pub args: PluginConfigInlineItemArgsInlineItem,
pub description: String,
pub docker_version: Option<String>,
pub documentation: String,
pub entrypoint: Vec<String, Global>,
pub env: Vec<PluginEnv, Global>,
pub interface: PluginConfigInlineItemInterfaceInlineItem,
pub ipc_host: bool,
pub linux: PluginConfigInlineItemLinuxInlineItem,
pub mounts: Vec<PluginMount, Global>,
pub network: PluginConfigInlineItemNetworkInlineItem,
pub pid_host: bool,
pub propagated_mount: String,
pub user: Option<PluginConfigInlineItemUserInlineItem>,
pub work_dir: String,
pub rootfs: Option<PluginConfigInlineItemrootfsInlineItem>,
}
Expand description
The config of a plugin.
Fields
args: PluginConfigInlineItemArgsInlineItem
description: String
docker_version: Option<String>
Docker Version used to create the plugin
documentation: String
entrypoint: Vec<String, Global>
env: Vec<PluginEnv, Global>
interface: PluginConfigInlineItemInterfaceInlineItem
The interface between Docker and the plugin
ipc_host: bool
linux: PluginConfigInlineItemLinuxInlineItem
mounts: Vec<PluginMount, Global>
network: PluginConfigInlineItemNetworkInlineItem
pid_host: bool
propagated_mount: String
user: Option<PluginConfigInlineItemUserInlineItem>
work_dir: String
rootfs: Option<PluginConfigInlineItemrootfsInlineItem>
Trait Implementations
sourceimpl Clone for PluginConfigInlineItem
impl Clone for PluginConfigInlineItem
sourcefn clone(&self) -> PluginConfigInlineItem
fn clone(&self) -> PluginConfigInlineItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PluginConfigInlineItem
impl Debug for PluginConfigInlineItem
sourceimpl<'de> Deserialize<'de> for PluginConfigInlineItem
impl<'de> Deserialize<'de> for PluginConfigInlineItem
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<PluginConfigInlineItem, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PluginConfigInlineItem, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<PluginConfigInlineItem> for PluginConfigInlineItem
impl PartialEq<PluginConfigInlineItem> for PluginConfigInlineItem
sourcefn eq(&self, other: &PluginConfigInlineItem) -> bool
fn eq(&self, other: &PluginConfigInlineItem) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for PluginConfigInlineItem
impl Serialize for PluginConfigInlineItem
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PluginConfigInlineItem
Auto Trait Implementations
impl RefUnwindSafe for PluginConfigInlineItem
impl Send for PluginConfigInlineItem
impl Sync for PluginConfigInlineItem
impl Unpin for PluginConfigInlineItem
impl UnwindSafe for PluginConfigInlineItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more