[][src]Struct iml_wire_types::Filesystem

pub struct Filesystem {
    pub bytes_free: Option<f64>,
    pub bytes_total: Option<f64>,
    pub cdt_mdt: Option<String>,
    pub cdt_status: Option<String>,
    pub client_count: Option<u64>,
    pub conf_params: FilesystemConfParams,
    pub content_type_id: u32,
    pub files_free: Option<u64>,
    pub files_total: Option<u64>,
    pub hsm_control_params: Option<Vec<HsmControlParam>>,
    pub id: u32,
    pub immutable_state: bool,
    pub label: String,
    pub mdts: Vec<Mdt>,
    pub mgt: String,
    pub mount_command: String,
    pub mount_path: String,
    pub name: String,
    pub osts: Vec<String>,
    pub resource_uri: String,
    pub state: String,
    pub state_modified_at: String,
}

A Filesystem record from /api/filesystem/

Fields

bytes_free: Option<f64>bytes_total: Option<f64>cdt_mdt: Option<String>cdt_status: Option<String>client_count: Option<u64>conf_params: FilesystemConfParamscontent_type_id: u32files_free: Option<u64>files_total: Option<u64>hsm_control_params: Option<Vec<HsmControlParam>>id: u32immutable_state: boollabel: Stringmdts: Vec<Mdt>mgt: Stringmount_command: Stringmount_path: Stringname: Stringosts: Vec<String>resource_uri: Stringstate: Stringstate_modified_at: String

Trait Implementations

impl Clone for Filesystem[src]

impl Debug for Filesystem[src]

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

impl EndpointName for Filesystem[src]

impl FlatQuery for Filesystem[src]

impl Id for Filesystem[src]

impl<'_> Id for &'_ Filesystem[src]

impl Label for Filesystem[src]

impl<'_> Label for &'_ Filesystem[src]

impl PartialEq<Filesystem> for Filesystem[src]

impl Serialize for Filesystem[src]

impl StructuralPartialEq for Filesystem[src]

impl ToCompositeId for Filesystem[src]

impl<'_> ToCompositeId for &'_ Filesystem[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> EndpointNameSelf for T where
    T: EndpointName
[src]

impl<T> ErasedRecord for T where
    T: ToCompositeId + Label + EndpointNameSelf + Id + Debug
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToBytes for T where
    T: Serialize
[src]

impl<T> ToJsonValue for T where
    T: Serialize
[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.