[][src]Struct rusoto_medialive::Mp2Settings

pub struct Mp2Settings {
    pub bitrate: Option<f64>,
    pub coding_mode: Option<String>,
    pub sample_rate: Option<f64>,
}

Mp2 Settings

Fields

bitrate: Option<f64>

Average bitrate in bits/second.

coding_mode: Option<String>

The MPEG2 Audio coding mode. Valid values are codingMode10 (for mono) or codingMode20 (for stereo).

sample_rate: Option<f64>

Sample rate in Hz.

Trait Implementations

impl PartialEq<Mp2Settings> for Mp2Settings[src]

impl Default for Mp2Settings[src]

impl Clone for Mp2Settings[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Mp2Settings[src]

impl Serialize for Mp2Settings[src]

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

Auto Trait Implementations

impl Send for Mp2Settings

impl Sync for Mp2Settings

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self