Struct google_youtube3::api::VideoProcessingDetails
source · pub struct VideoProcessingDetails {
pub editor_suggestions_availability: Option<String>,
pub file_details_availability: Option<String>,
pub processing_failure_reason: Option<String>,
pub processing_issues_availability: Option<String>,
pub processing_progress: Option<VideoProcessingDetailsProcessingProgress>,
pub processing_status: Option<String>,
pub tag_suggestions_availability: Option<String>,
pub thumbnails_availability: Option<String>,
}
Expand description
Describes processing status and progress and availability of some other Video resource parts.
This type is not used in any activity, and only used as part of another schema.
Fields§
§editor_suggestions_availability: Option<String>
This value indicates whether video editing suggestions, which might improve video quality or the playback experience, are available for the video. You can retrieve these suggestions by requesting the suggestions part in your videos.list() request.
file_details_availability: Option<String>
This value indicates whether file details are available for the uploaded video. You can retrieve a video’s file details by requesting the fileDetails part in your videos.list() request.
processing_failure_reason: Option<String>
The reason that YouTube failed to process the video. This property will only have a value if the processingStatus property’s value is failed.
processing_issues_availability: Option<String>
This value indicates whether the video processing engine has generated suggestions that might improve YouTube’s ability to process the the video, warnings that explain video processing problems, or errors that cause video processing problems. You can retrieve these suggestions by requesting the suggestions part in your videos.list() request.
processing_progress: Option<VideoProcessingDetailsProcessingProgress>
The processingProgress object contains information about the progress YouTube has made in processing the video. The values are really only relevant if the video’s processing status is processing.
processing_status: Option<String>
The video’s processing status. This value indicates whether YouTube was able to process the video or if the video is still being processed.
tag_suggestions_availability: Option<String>
This value indicates whether keyword (tag) suggestions are available for the video. Tags can be added to a video’s metadata to make it easier for other users to find the video. You can retrieve these suggestions by requesting the suggestions part in your videos.list() request.
thumbnails_availability: Option<String>
This value indicates whether thumbnail images have been generated for the video.
Trait Implementations§
source§impl Clone for VideoProcessingDetails
impl Clone for VideoProcessingDetails
source§fn clone(&self) -> VideoProcessingDetails
fn clone(&self) -> VideoProcessingDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more