Struct google_classroom1::YouTubeVideo[][src]

pub struct YouTubeVideo {
    pub title: Option<String>,
    pub thumbnail_url: Option<String>,
    pub id: Option<String>,
    pub alternate_link: Option<String>,
}

YouTube video item.

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

Fields

Title of the YouTube video.

Read-only.

URL of a thumbnail image of the YouTube video.

Read-only.

YouTube API resource ID.

URL that can be used to view the YouTube video.

Read-only.

Trait Implementations

impl Default for YouTubeVideo
[src]

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

impl Clone for YouTubeVideo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for YouTubeVideo
[src]

Formats the value using the given formatter. Read more

impl Part for YouTubeVideo
[src]

Auto Trait Implementations