[][src]Struct isilon::models::ClusterPatchPatchesPatch

pub struct ClusterPatchPatchesPatch {
    pub comment: Option<String>,
    pub conflicts: Option<Vec<String>>,
    pub dependencies: Option<Vec<String>>,
    pub description: Option<String>,
    pub files: Option<Vec<ClusterPatchPatchesPatchFile>>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub nodes: Option<Vec<i32>>,
    pub reboot: Option<String>,
    pub services: Option<Vec<ClusterPatchPatchesPatchService>>,
    pub status: Option<String>,
}

Fields

comment: Option<String>

A long comment about the patch.

conflicts: Option<Vec<String>>

Other patches that this patch conflicts with.

dependencies: Option<Vec<String>>

Other patches that this patch depends on.

description: Option<String>

A short description of the patch.

files: Option<Vec<ClusterPatchPatchesPatchFile>>

The files contained in this patch.

id: Option<String>

A unique identifier for the patch.

name: Option<String>

The name of the patch.

nodes: Option<Vec<i32>>

The nodes that this patch is installed on.

reboot: Option<String>

Describes the reboot requirements

services: Option<Vec<ClusterPatchPatchesPatchService>>

The services affected during the patch deployment

status: Option<String>

The intallation status of this patch on the cluster.

Trait Implementations

impl Debug for ClusterPatchPatchesPatch[src]

impl Serialize for ClusterPatchPatchesPatch[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T