[][src]Struct rusoto_lightsail::DiskMap

pub struct DiskMap {
    pub new_disk_name: Option<String>,
    pub original_disk_path: Option<String>,
}

Describes a block storage disk mapping.

Fields

new_disk_name: Option<String>

The new disk name (e.g., my-new-disk).

original_disk_path: Option<String>

The original disk path exposed to the instance (for example, /dev/sdh).

Trait Implementations

impl Clone for DiskMap[src]

impl Debug for DiskMap[src]

impl Default for DiskMap[src]

impl PartialEq<DiskMap> for DiskMap[src]

impl Serialize for DiskMap[src]

impl StructuralPartialEq for DiskMap[src]

Auto Trait Implementations

impl RefUnwindSafe for DiskMap

impl Send for DiskMap

impl Sync for DiskMap

impl Unpin for DiskMap

impl UnwindSafe for DiskMap

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