Struct digitalocean::prelude::Image

source ·
pub struct Image { /* private fields */ }
Expand description

Images in DigitalOcean may refer to one of a few different kinds of objects.

An image may refer to a snapshot that has been taken of a Droplet instance. It may also mean an image representing an automatic backup of a Droplet. The third category that it can represent is a public Linux distribution or application image that is used as a base to create Droplets.

Digital Ocean Documentation.

Implementations§

A unique number that can be used to identify and reference a specific image.

The display name that has been given to an image. This is what is shown in the control panel and is generally a descriptive title for the image in question.

The kind of image, describing the duration of how long the image is stored. This is either “snapshot” or “backup”.

Note: Since type is a keyword in Rust kind is used instead.

This attribute describes the base distribution used for this image.

A uniquely identifying string that is associated with each of the DigitalOcean-provided public images. These can be used to reference a public image as an alternative to the numeric id.

This is a boolean value that indicates whether the image in question is public or not. An image that is public is available to all accounts. A non-public image is only accessible from your account.

This attribute is an array of the regions that the image is available in. The regions are represented by their identifying slug values.

The minimum ‘disk’ required for a size to use this image.

The size of the image in gigabytes.

A time value given in ISO8601 combined date and time format that represents when the Image was created.

id is either an id (numeric) or a slug (string).

Digital Ocean Documentation.

id is either an id (numeric) or a slug (string).

Digital Ocean Documentation.

id is either an id (numeric) or a slug (string).

Digital Ocean Documentation.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.