[][src]Struct google_compute1::ImageRawDisk

pub struct ImageRawDisk {
    pub container_type: Option<String>,
    pub source: Option<String>,
    pub sha1_checksum: Option<String>,
}

The parameters of the raw disk image.

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

Fields

container_type: Option<String>

The format used to encode and transmit the block device, which should be TAR. This is just a container and transmission format and not a runtime format. Provided by the client when the disk image is created.

source: Option<String>

The full Google Cloud Storage URL where the disk image is stored. You must provide either this property or the sourceDisk property but not both.

sha1_checksum: Option<String>

[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.

Trait Implementations

impl Part for ImageRawDisk[src]

impl NestedType for ImageRawDisk[src]

impl Default for ImageRawDisk[src]

impl Clone for ImageRawDisk[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ImageRawDisk[src]

impl Serialize for ImageRawDisk[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]