Struct google_youtube3::api::Cuepoint
source · pub struct Cuepoint {
pub cue_type: Option<String>,
pub duration_secs: Option<u32>,
pub etag: Option<String>,
pub id: Option<String>,
pub insertion_offset_time_ms: Option<i64>,
pub walltime_ms: Option<u64>,
}
Expand description
Note that there may be a 5-second end-point resolution issue. For instance, if a cuepoint comes in for 22:03:27, we may stuff the cuepoint into 22:03:25 or 22:03:30, depending. This is an artifact of HLS.
Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- insert cuepoint live broadcasts (request|response)
Fields§
§cue_type: Option<String>
no description provided
duration_secs: Option<u32>
The duration of this cuepoint.
etag: Option<String>
no description provided
id: Option<String>
The identifier for cuepoint resource.
insertion_offset_time_ms: Option<i64>
The time when the cuepoint should be inserted by offset to the broadcast actual start time.
walltime_ms: Option<u64>
The wall clock time at which the cuepoint should be inserted. Only one of insertion_offset_time_ms and walltime_ms may be set at a time.