Struct digitalocean::api::Image [] [src]

pub struct Image { /* fields omitted */ }

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.

Methods

impl Image
[src]

[src]

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

[src]

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.

[src]

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.

[src]

This attribute describes the base distribution used for this image.

[src]

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.

[src]

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.

[src]

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

[src]

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

[src]

The size of the image in gigabytes.

[src]

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

impl Image
[src]

[src]

[src]

[src]

[src]

[src]

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

Digital Ocean Documentation.

[src]

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

Digital Ocean Documentation.

[src]

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

Digital Ocean Documentation.

Trait Implementations

impl Debug for Image
[src]

[src]

Formats the value using the given formatter.

impl Clone for Image
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl HasResponse for Image
[src]