Struct google_transcoder1_beta1::api::AudioChannelInput[][src]

pub struct AudioChannelInput {
    pub channel: Option<i32>,
    pub gain_db: Option<f64>,
    pub key: Option<String>,
    pub track: Option<i32>,
}

Identifies which input file, track, and channel should be used.

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

Fields

channel: Option<i32>

Required. The zero-based index of the channel in the input file.

gain_db: Option<f64>

Audio volume control in dB. Negative values decrease volume, positive values increase. The default is 0.

key: Option<String>

Required. The Input.key that identifies the input file.

track: Option<i32>

Required. The zero-based index of the track in the input file.

Trait Implementations

impl Clone for AudioChannelInput[src]

impl Debug for AudioChannelInput[src]

impl Default for AudioChannelInput[src]

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

impl Part for AudioChannelInput[src]

impl Serialize for AudioChannelInput[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> Instrument 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.