[][src]Struct rusoto_mediaconvert::TeletextDestinationSettings

pub struct TeletextDestinationSettings {
    pub page_number: Option<String>,
    pub page_types: Option<Vec<String>>,
}

Settings for Teletext caption output

Fields

page_number: Option<String>

Set pageNumber to the Teletext page number for the destination captions for this output. This value must be a three-digit hexadecimal string; strings ending in -FF are invalid. If you are passing through the entire set of Teletext data, do not use this field.

page_types: Option<Vec<String>>

Specify the page types for this Teletext page. If you don't specify a value here, the service sets the page type to the default value Subtitle (PAGETYPESUBTITLE). If you pass through the entire set of Teletext data, don't use this field. When you pass through a set of Teletext pages, your output has the same page types as your input.

Trait Implementations

impl Clone for TeletextDestinationSettings[src]

impl Debug for TeletextDestinationSettings[src]

impl Default for TeletextDestinationSettings[src]

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

impl PartialEq<TeletextDestinationSettings> for TeletextDestinationSettings[src]

impl Serialize for TeletextDestinationSettings[src]

impl StructuralPartialEq for TeletextDestinationSettings[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.