Struct google_youtube3::ThumbnailDetails[][src]

pub struct ThumbnailDetails {
    pub default: Option<Thumbnail>,
    pub high: Option<Thumbnail>,
    pub medium: Option<Thumbnail>,
    pub maxres: Option<Thumbnail>,
    pub standard: Option<Thumbnail>,
}

Internal representation of thumbnails for a YouTube resource.

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

Fields

The default image for this resource.

The high quality image for this resource.

The medium quality image for this resource.

The maximum resolution quality image for this resource.

The standard quality image for this resource.

Trait Implementations

impl Default for ThumbnailDetails
[src]

Returns the "default value" for a type. Read more

impl Clone for ThumbnailDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ThumbnailDetails
[src]

Formats the value using the given formatter. Read more

impl Part for ThumbnailDetails
[src]

Auto Trait Implementations