[][src]Struct google_youtube3::VideoSuggestions

pub struct VideoSuggestions {
    pub processing_errors: Option<Vec<String>>,
    pub tag_suggestions: Option<Vec<VideoSuggestionsTagSuggestion>>,
    pub editor_suggestions: Option<Vec<String>>,
    pub processing_warnings: Option<Vec<String>>,
    pub processing_hints: Option<Vec<String>>,
}

Specifies suggestions on how to improve video content, including encoding hints, tag suggestions, and editor suggestions.

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

Fields

processing_errors: Option<Vec<String>>

A list of errors that will prevent YouTube from successfully processing the uploaded video video. These errors indicate that, regardless of the video's current processing status, eventually, that status will almost certainly be failed.

tag_suggestions: Option<Vec<VideoSuggestionsTagSuggestion>>

A list of keyword tags that could be added to the video's metadata to increase the likelihood that users will locate your video when searching or browsing on YouTube.

editor_suggestions: Option<Vec<String>>

A list of video editing operations that might improve the video quality or playback experience of the uploaded video.

processing_warnings: Option<Vec<String>>

A list of reasons why YouTube may have difficulty transcoding the uploaded video or that might result in an erroneous transcoding. These warnings are generated before YouTube actually processes the uploaded video file. In addition, they identify issues that are unlikely to cause the video processing to fail but that might cause problems such as sync issues, video artifacts, or a missing audio track.

processing_hints: Option<Vec<String>>

A list of suggestions that may improve YouTube's ability to process the video.

Trait Implementations

impl Part for VideoSuggestions[src]

impl Default for VideoSuggestions[src]

impl Clone for VideoSuggestions[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for VideoSuggestions[src]

impl Serialize for VideoSuggestions[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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