Struct nomad_client::models::csi_info::CsiInfo[][src]

pub struct CsiInfo {
    pub plugin_id: Option<String>,
    pub healthy: Option<bool>,
    pub health_description: Option<String>,
    pub update_time: Option<String>,
    pub requires_controller_plugin: Option<bool>,
    pub requires_topologies: Option<bool>,
    pub controller_info: Option<Box<CsiControllerInfo>>,
    pub node_info: Option<Box<CsiNodeInfo>>,
}

Fields

plugin_id: Option<String>healthy: Option<bool>health_description: Option<String>update_time: Option<String>requires_controller_plugin: Option<bool>requires_topologies: Option<bool>controller_info: Option<Box<CsiControllerInfo>>node_info: Option<Box<CsiNodeInfo>>

Implementations

impl CsiInfo[src]

pub fn new() -> CsiInfo[src]

Trait Implementations

impl Clone for CsiInfo[src]

impl Debug for CsiInfo[src]

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

impl PartialEq<CsiInfo> for CsiInfo[src]

impl Serialize for CsiInfo[src]

impl StructuralPartialEq for CsiInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for CsiInfo

impl Send for CsiInfo

impl Sync for CsiInfo

impl Unpin for CsiInfo

impl UnwindSafe for CsiInfo

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> Instrument 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.