pub struct VideoProcessingDetailsProcessingProgress {
pub parts_processed: Option<u64>,
pub parts_total: Option<u64>,
pub time_left_ms: Option<u64>,
}
Expand description
Video processing progress and completion time estimate.
This type is not used in any activity, and only used as part of another schema.
Fields§
§parts_processed: Option<u64>
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.
parts_total: Option<u64>
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.
time_left_ms: Option<u64>
An estimate of the amount of time, in millseconds, that YouTube needs to finish processing the video.
Trait Implementations§
source§impl Clone for VideoProcessingDetailsProcessingProgress
impl Clone for VideoProcessingDetailsProcessingProgress
source§fn clone(&self) -> VideoProcessingDetailsProcessingProgress
fn clone(&self) -> VideoProcessingDetailsProcessingProgress
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more