Struct docker_api_stubs::models::PluginsInfo
source · [−]pub struct PluginsInfo {
pub authorization: Option<Vec<String>>,
pub log: Option<Vec<String>>,
pub network: Option<Vec<String>>,
pub volume: Option<Vec<String>>,
}
Expand description
Available plugins per type.
Note: Only unmanaged (V1) plugins are included in this list. V1 plugins are “lazily” loaded, and are not returned in this list if there is no resource using the plugin.
Fields
Names of available authorization plugins.
log: Option<Vec<String>>
Names of available logging-drivers, and logging-driver plugins.
network: Option<Vec<String>>
Names of available network-drivers, and network-driver plugins.
volume: Option<Vec<String>>
Names of available volume-drivers, and network-driver plugins.
Trait Implementations
sourceimpl Clone for PluginsInfo
impl Clone for PluginsInfo
sourcefn clone(&self) -> PluginsInfo
fn clone(&self) -> PluginsInfo
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for PluginsInfo
impl Debug for PluginsInfo
sourceimpl<'de> Deserialize<'de> for PluginsInfo
impl<'de> Deserialize<'de> for PluginsInfo
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
sourceimpl PartialEq<PluginsInfo> for PluginsInfo
impl PartialEq<PluginsInfo> for PluginsInfo
sourcefn eq(&self, other: &PluginsInfo) -> bool
fn eq(&self, other: &PluginsInfo) -> bool
sourceimpl Serialize for PluginsInfo
impl Serialize for PluginsInfo
impl StructuralPartialEq for PluginsInfo
Auto Trait Implementations
impl RefUnwindSafe for PluginsInfo
impl Send for PluginsInfo
impl Sync for PluginsInfo
impl Unpin for PluginsInfo
impl UnwindSafe for PluginsInfo
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