[][src]Struct rusoto_storagegateway::Disk

pub struct Disk {
    pub disk_allocation_resource: Option<String>,
    pub disk_allocation_type: Option<String>,
    pub disk_attribute_list: Option<Vec<String>>,
    pub disk_id: Option<String>,
    pub disk_node: Option<String>,
    pub disk_path: Option<String>,
    pub disk_size_in_bytes: Option<i64>,
    pub disk_status: Option<String>,
}

Represents a gateway's local disk.

Fields

disk_allocation_resource: Option<String>

The iSCSI qualified name (IQN) that is defined for a disk. This field is not included in the response if the local disk is not defined as an iSCSI target. The format of this field is targetIqn::LUNNumber::region-volumeId.

disk_allocation_type: Option<String>disk_attribute_list: Option<Vec<String>>disk_id: Option<String>

The unique device ID or other distinguishing data that identifies a local disk.

disk_node: Option<String>

The device node of a local disk as assigned by the virtualization environment.

disk_path: Option<String>

The path of a local disk in the gateway virtual machine (VM).

disk_size_in_bytes: Option<i64>

The local disk size in bytes.

disk_status: Option<String>

A value that represents the status of a local disk.

Trait Implementations

impl Clone for Disk[src]

impl Debug for Disk[src]

impl Default for Disk[src]

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

impl PartialEq<Disk> for Disk[src]

impl StructuralPartialEq for Disk[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> 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> Same<T> for T

type Output = T

Should always be Self

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.