[][src]Struct rusoto_mediaconvert::NielsenConfiguration

pub struct NielsenConfiguration {
    pub breakout_code: Option<i64>,
    pub distributor_id: Option<String>,
}

Settings for your Nielsen configuration. If you don't do Nielsen measurement and analytics, ignore these settings. When you enable Nielsen configuration (nielsenConfiguration), MediaConvert enables PCM to ID3 tagging for all outputs in the job. To enable Nielsen configuration programmatically, include an instance of nielsenConfiguration in your JSON job specification. Even if you don't include any children of nielsenConfiguration, you still enable the setting.

Fields

breakout_code: Option<i64>

Nielsen has discontinued the use of breakout code functionality. If you must include this property, set the value to zero.

distributor_id: Option<String>

Use Distributor ID (DistributorID) to specify the distributor ID that is assigned to your organization by Neilsen.

Trait Implementations

impl Clone for NielsenConfiguration[src]

impl Debug for NielsenConfiguration[src]

impl Default for NielsenConfiguration[src]

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

impl PartialEq<NielsenConfiguration> for NielsenConfiguration[src]

impl Serialize for NielsenConfiguration[src]

impl StructuralPartialEq for NielsenConfiguration[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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.