[][src]Struct rusoto_mediaconvert::AncillarySourceSettings

pub struct AncillarySourceSettings {
    pub convert_608_to_708: Option<String>,
    pub source_ancillary_channel_number: Option<i64>,
    pub terminate_captions: Option<String>,
}

Settings for ancillary captions source.

Fields

convert_608_to_708: Option<String>

Specify whether this set of input captions appears in your outputs in both 608 and 708 format. If you choose Upconvert (UPCONVERT), MediaConvert includes the captions data in two ways: it passes the 608 data through using the 608 compatibility bytes fields of the 708 wrapper, and it also translates the 608 data into 708.

source_ancillary_channel_number: Option<i64>

Specifies the 608 channel number in the ancillary data track from which to extract captions. Unused for passthrough.

terminate_captions: Option<String>

By default, the service terminates any unterminated captions at the end of each input. If you want the caption to continue onto your next input, disable this setting.

Trait Implementations

impl Clone for AncillarySourceSettings[src]

impl Debug for AncillarySourceSettings[src]

impl Default for AncillarySourceSettings[src]

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

impl PartialEq<AncillarySourceSettings> for AncillarySourceSettings[src]

impl Serialize for AncillarySourceSettings[src]

impl StructuralPartialEq for AncillarySourceSettings[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.