[][src]Struct isilon::models::CloudAccessCluster

pub struct CloudAccessCluster {
    pub accounts: Option<Vec<String>>,
    pub current: Option<bool>,
    pub guid: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub policies: Option<Vec<String>>,
    pub state: Option<String>,
    pub synced_from: Option<String>,
}

Fields

accounts: Option<Vec<String>>

A list of accounts created on the cluster with this guid

current: Option<bool>

Whether the guid is that of the current (local) cluster

guid: Option<String>

A cluster guid indicating the birth place of one or more accounts or policies on this cluster

id: Option<String>

A cluster guid indicating the birth place of one or more accounts or policies on this cluster

name: Option<String>

The name of the cluster from which the above guid originated

policies: Option<Vec<String>>

A list of policies created on the cluster with this guid

state: Option<String>

Whether the guid has access to the cloud

synced_from: Option<String>

The name of the cluster from which the above guid was synced

Trait Implementations

impl Debug for CloudAccessCluster[src]

impl Serialize for CloudAccessCluster[src]

impl<'de> Deserialize<'de> for CloudAccessCluster[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