Struct google_youtube3::VideoProcessingDetailsProcessingProgress [] [src]

pub struct VideoProcessingDetailsProcessingProgress {
    pub time_left_ms: Option<String>,
    pub parts_processed: Option<String>,
    pub parts_total: Option<String>,
}

Video processing progress and completion time estimate.

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

Fields

An estimate of the amount of time, in millseconds, that YouTube needs to finish processing the video.

The number of parts of the video that YouTube has already processed. You can estimate the percentage of the video that YouTube has already processed by calculating: 100 * parts_processed / parts_total

Note that since the estimated number of parts could increase without a corresponding increase in the number of parts that have already been processed, it is possible that the calculated progress could periodically decrease while YouTube processes a video.

An estimate of the total number of parts that need to be processed for the video. The number may be updated with more precise estimates while YouTube processes the video.

Trait Implementations

impl Default for VideoProcessingDetailsProcessingProgress
[src]

[src]

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

impl Clone for VideoProcessingDetailsProcessingProgress
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VideoProcessingDetailsProcessingProgress
[src]

[src]

Formats the value using the given formatter.

impl Part for VideoProcessingDetailsProcessingProgress
[src]