Struct google_youtube3::api::VideoFileDetails [−][src]
Describes original video file properties, including technical details about audio and video streams, but also metadata information like content length, digitization time, or geotagging information.
This type is not used in any activity, and only used as part of another schema.
Fields
audio_streams: Option<Vec<VideoFileDetailsAudioStream>>A list of audio streams contained in the uploaded video file. Each item in the list contains detailed metadata about an audio stream.
bitrate_bps: Option<String>The uploaded video file's combined (video and audio) bitrate in bits per second.
container: Option<String>The uploaded video file's container format.
creation_time: Option<String>The date and time when the uploaded video file was created. The value is specified in ISO 8601 format. Currently, the following ISO 8601 formats are supported: - Date only: YYYY-MM-DD - Naive time: YYYY-MM-DDTHH:MM:SS - Time with timezone: YYYY-MM-DDTHH:MM:SS+HH:MM
duration_ms: Option<String>The length of the uploaded video in milliseconds.
file_name: Option<String>The uploaded file's name. This field is present whether a video file or another type of file was uploaded.
file_size: Option<String>The uploaded file's size in bytes. This field is present whether a video file or another type of file was uploaded.
file_type: Option<String>The uploaded file's type as detected by YouTube's video processing engine. Currently, YouTube only processes video files, but this field is present whether a video file or another type of file was uploaded.
video_streams: Option<Vec<VideoFileDetailsVideoStream>>A list of video streams contained in the uploaded video file. Each item in the list contains detailed metadata about a video stream.
Trait Implementations
impl Clone for VideoFileDetails[src]
fn clone(&self) -> VideoFileDetails[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for VideoFileDetails[src]
impl Default for VideoFileDetails[src]
fn default() -> VideoFileDetails[src]
impl<'de> Deserialize<'de> for VideoFileDetails[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for VideoFileDetails[src]
impl Serialize for VideoFileDetails[src]
Auto Trait Implementations
impl RefUnwindSafe for VideoFileDetails[src]
impl Send for VideoFileDetails[src]
impl Sync for VideoFileDetails[src]
impl Unpin for VideoFileDetails[src]
impl UnwindSafe for VideoFileDetails[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,