Struct google_lifesciences2_beta::api::Volume[][src]

pub struct Volume {
    pub existing_disk: Option<ExistingDisk>,
    pub nfs_mount: Option<NFSMount>,
    pub persistent_disk: Option<PersistentDisk>,
    pub volume: Option<String>,
}

Carries information about storage that can be attached to a VM. Specify either Volume or Disk, but not both.

This type is not used in any activity, and only used as part of another schema.

Fields

existing_disk: Option<ExistingDisk>

Configuration for a existing disk.

nfs_mount: Option<NFSMount>

Configuration for an NFS mount.

persistent_disk: Option<PersistentDisk>

Configuration for a persistent disk.

volume: Option<String>

A user-supplied name for the volume. Used when mounting the volume into Actions. The name must contain only upper and lowercase alphanumeric characters and hyphens and cannot start with a hyphen.

Trait Implementations

impl Clone for Volume[src]

impl Debug for Volume[src]

impl Default for Volume[src]

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

impl Part for Volume[src]

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