[][src]Struct iml_wire_types::Volume

pub struct Volume {
    pub filesystem_type: Option<String>,
    pub id: u32,
    pub kind: String,
    pub label: String,
    pub resource_uri: String,
    pub size: Option<i64>,
    pub status: Option<String>,
    pub storage_resource: Option<String>,
    pub usable_for_lustre: bool,
    pub volume_nodes: Vec<VolumeNode>,
}

A Volume record from api/volume/

Fields

filesystem_type: Option<String>id: u32kind: Stringlabel: Stringresource_uri: Stringsize: Option<i64>status: Option<String>storage_resource: Option<String>usable_for_lustre: boolvolume_nodes: Vec<VolumeNode>

Trait Implementations

impl Clone for Volume[src]

impl Debug for Volume[src]

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

impl EndpointName for Volume[src]

impl FlatQuery for Volume[src]

impl Id for Volume[src]

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

impl Label for Volume[src]

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

impl PartialEq<Volume> for Volume[src]

impl Serialize for Volume[src]

impl StructuralPartialEq for Volume[src]

Auto Trait Implementations

impl RefUnwindSafe for Volume

impl Send for Volume

impl Sync for Volume

impl Unpin for Volume

impl UnwindSafe for Volume

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