[][src]Struct google_displayvideo1::Transcode

pub struct Transcode {
    pub mime_type: Option<String>,
    pub bit_rate_kbps: Option<String>,
    pub dimensions: Option<Dimensions>,
    pub audio_bit_rate_kbps: Option<String>,
    pub frame_rate: Option<f32>,
    pub name: Option<String>,
    pub transcoded: Option<bool>,
    pub file_size_bytes: Option<String>,
    pub audio_sample_rate_hz: Option<String>,
}

Represents information about the transcoded audio or video file.

This type is not used in any activity, and only used as part of another schema.

Fields

mime_type: Option<String>

The MIME type of the transcoded file.

bit_rate_kbps: Option<String>

The transcoding bit rate of the transcoded video, in kilobits per second.

dimensions: Option<Dimensions>

The dimensions of the transcoded video.

audio_bit_rate_kbps: Option<String>

The bit rate for the audio stream of the transcoded video, or the bit rate for the transcoded audio, in kilobits per second.

frame_rate: Option<f32>

The frame rate of the transcoded video, in frames per second.

name: Option<String>

The name of the transcoded file.

transcoded: Option<bool>

Indicates if the transcoding was successful.

file_size_bytes: Option<String>

The size of the transcoded file, in bytes.

audio_sample_rate_hz: Option<String>

The sample rate for the audio stream of the transcoded video, or the sample rate for the transcoded audio, in hertz.

Trait Implementations

impl Clone for Transcode[src]

impl Debug for Transcode[src]

impl Default for Transcode[src]

impl<'de> Deserialize<'de> for Transcode[src]

impl Part for Transcode[src]

impl Serialize for Transcode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any