Struct google_youtube3::api::VideoStatus
source · pub struct VideoStatus {
pub embeddable: Option<bool>,
pub failure_reason: Option<String>,
pub license: Option<String>,
pub made_for_kids: Option<bool>,
pub privacy_status: Option<String>,
pub public_stats_viewable: Option<bool>,
pub publish_at: Option<DateTime<Utc>>,
pub rejection_reason: Option<String>,
pub self_declared_made_for_kids: Option<bool>,
pub upload_status: Option<String>,
}
Expand description
Basic details about a video category, such as its localized title. Next Id: 18
This type is not used in any activity, and only used as part of another schema.
Fields§
§embeddable: Option<bool>
This value indicates if the video can be embedded on another website. @mutable youtube.videos.insert youtube.videos.update
failure_reason: Option<String>
This value explains why a video failed to upload. This property is only present if the uploadStatus property indicates that the upload failed.
license: Option<String>
The video’s license. @mutable youtube.videos.insert youtube.videos.update
made_for_kids: Option<bool>
no description provided
privacy_status: Option<String>
The video’s privacy status.
public_stats_viewable: Option<bool>
This value indicates if the extended video statistics on the watch page can be viewed by everyone. Note that the view count, likes, etc will still be visible if this is disabled. @mutable youtube.videos.insert youtube.videos.update
publish_at: Option<DateTime<Utc>>
The date and time when the video is scheduled to publish. It can be set only if the privacy status of the video is private..
rejection_reason: Option<String>
This value explains why YouTube rejected an uploaded video. This property is only present if the uploadStatus property indicates that the upload was rejected.
self_declared_made_for_kids: Option<bool>
no description provided
upload_status: Option<String>
The status of the uploaded video.
Trait Implementations§
source§impl Clone for VideoStatus
impl Clone for VideoStatus
source§fn clone(&self) -> VideoStatus
fn clone(&self) -> VideoStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more