[][src]Struct rusoto_mediaconvert::AudioCodecSettings

pub struct AudioCodecSettings {
    pub aac_settings: Option<AacSettings>,
    pub ac_3_settings: Option<Ac3Settings>,
    pub aiff_settings: Option<AiffSettings>,
    pub codec: String,
    pub eac_3_settings: Option<Eac3Settings>,
    pub mp_2_settings: Option<Mp2Settings>,
    pub wav_settings: Option<WavSettings>,
}

Audio codec settings (CodecSettings) under (AudioDescriptions) contains the group of settings related to audio encoding. The settings in this group vary depending on the value you choose for Audio codec (Codec). For each codec enum you choose, define the corresponding settings object. The following lists the codec enum, settings object pairs. * AAC, AacSettings * MP2, Mp2Settings * WAV, WavSettings * AIFF, AiffSettings * AC3, Ac3Settings * EAC3, Eac3Settings

Fields

Trait Implementations

impl Clone for AudioCodecSettings
[src]

Performs copy-assignment from source. Read more

impl Default for AudioCodecSettings
[src]

impl PartialEq<AudioCodecSettings> for AudioCodecSettings
[src]

impl Debug for AudioCodecSettings
[src]

impl Serialize for AudioCodecSettings
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self