[][src]Struct google_youtube3::GuideCategory

pub struct GuideCategory {
    pub snippet: Option<GuideCategorySnippet>,
    pub kind: Option<String>,
    pub etag: Option<String>,
    pub id: Option<String>,
}

A guideCategory resource identifies a category that YouTube algorithmically assigns based on a channel's content or other indicators, such as the channel's popularity. The list is similar to video categories, with the difference being that a video's uploader can assign a video category but only YouTube can assign a channel category.

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

Fields

snippet: Option<GuideCategorySnippet>

The snippet object contains basic details about the category, such as its title.

kind: Option<String>

Identifies what kind of resource this is. Value: the fixed string "youtube#guideCategory".

etag: Option<String>

Etag of this resource.

id: Option<String>

The ID that YouTube uses to uniquely identify the guide category.

Trait Implementations

impl Clone for GuideCategory[src]

impl Debug for GuideCategory[src]

impl Default for GuideCategory[src]

impl<'de> Deserialize<'de> for GuideCategory[src]

impl Part for GuideCategory[src]

impl Serialize for GuideCategory[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any