if there is no resource using the plugin. ">bollard_stubs::models::PluginsInfo - Rust

Struct bollard_stubs::models::PluginsInfo[][src]

pub struct PluginsInfo {
    pub volume: Option<Vec<String>>,
    pub network: Option<Vec<String>>,
    pub authorization: Option<Vec<String>>,
    pub log: Option<Vec<String>>,
}

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

volume: Option<Vec<String>>

Names of available volume-drivers, and network-driver plugins.

network: Option<Vec<String>>

Names of available network-drivers, and network-driver plugins.

authorization: Option<Vec<String>>

Names of available authorization plugins.

log: Option<Vec<String>>

Names of available logging-drivers, and logging-driver plugins.

Trait Implementations

impl Clone for PluginsInfo[src]

impl Debug for PluginsInfo[src]

impl Default for PluginsInfo[src]

impl<'de> Deserialize<'de> for PluginsInfo[src]

impl PartialEq<PluginsInfo> for PluginsInfo[src]

impl Serialize for PluginsInfo[src]

impl StructuralPartialEq for PluginsInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.