[][src]Struct rusoto_lightsail::DiskInfo

pub struct DiskInfo {
    pub is_system_disk: Option<bool>,
    pub name: Option<String>,
    pub path: Option<String>,
    pub size_in_gb: Option<i64>,
}

Describes a disk.

Fields

is_system_disk: Option<bool>

A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).

name: Option<String>

The disk name.

path: Option<String>

The disk path.

size_in_gb: Option<i64>

The size of the disk in GB (e.g., 32).

Trait Implementations

impl Clone for DiskInfo[src]

impl Debug for DiskInfo[src]

impl Default for DiskInfo[src]

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

impl PartialEq<DiskInfo> for DiskInfo[src]

impl StructuralPartialEq for DiskInfo[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: Deserialize<'de>, 
[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> 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.