Struct google_youtube3::api::VideoFileDetailsVideoStream [−][src]
Information about a video stream.
This type is not used in any activity, and only used as part of another schema.
Fields
aspect_ratio: Option<f64>The video content's display aspect ratio, which specifies the aspect ratio in which the video should be displayed.
bitrate_bps: Option<String>The video stream's bitrate, in bits per second.
codec: Option<String>The video codec that the stream uses.
frame_rate_fps: Option<f64>The video stream's frame rate, in frames per second.
height_pixels: Option<u32>The encoded video content's height in pixels.
rotation: Option<String>The amount that YouTube needs to rotate the original source content to properly display the video.
vendor: Option<String>A value that uniquely identifies a video vendor. Typically, the value is a four-letter vendor code.
width_pixels: Option<u32>The encoded video content's width in pixels. You can calculate the video's encoding aspect ratio as width_pixels / height_pixels.
Trait Implementations
impl Clone for VideoFileDetailsVideoStream[src]
fn clone(&self) -> VideoFileDetailsVideoStream[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for VideoFileDetailsVideoStream[src]
impl Default for VideoFileDetailsVideoStream[src]
impl<'de> Deserialize<'de> for VideoFileDetailsVideoStream[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for VideoFileDetailsVideoStream[src]
impl Serialize for VideoFileDetailsVideoStream[src]
Auto Trait Implementations
impl RefUnwindSafe for VideoFileDetailsVideoStream[src]
impl Send for VideoFileDetailsVideoStream[src]
impl Sync for VideoFileDetailsVideoStream[src]
impl Unpin for VideoFileDetailsVideoStream[src]
impl UnwindSafe for VideoFileDetailsVideoStream[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>,