Struct kitsu::model::Image [] [src]

pub struct Image {
    pub large: Option<String>,
    pub medium: Option<String>,
    pub original: Option<String>,
    pub small: Option<String>,
    pub tiny: Option<String>,
}

A list of links to the media's relevant images.

Fields

Link to a large size of the image.

Link to a medium size of the image.

Link to an original size of the image.

Link to a small size of the image.

Link to a tiny size of the image.

Methods

impl Image
[src]

[src]

Retrieves the URL to the largest image in descending order where available, if any.

This places priority on the original field.

Trait Implementations

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 Debug for Image
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Image

impl Sync for Image