Struct bollard_stubs::models::Plugin[][src]

pub struct Plugin {
    pub id: Option<String>,
    pub name: String,
    pub enabled: bool,
    pub settings: PluginSettings,
    pub plugin_reference: Option<String>,
    pub config: PluginConfig,
}

A plugin for the Engine API

Fields

id: Option<String>name: Stringenabled: bool

True if the plugin is running. False if the plugin is not running, only installed.

settings: PluginSettingsplugin_reference: Option<String>

plugin remote reference used to push/pull the plugin

config: PluginConfig

Trait Implementations

impl Clone for Plugin[src]

impl Debug for Plugin[src]

impl Default for Plugin[src]

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

impl PartialEq<Plugin> for Plugin[src]

impl Serialize for Plugin[src]

impl StructuralPartialEq for Plugin[src]

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

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.