[][src]Struct rusoto_mediaconvert::DvbSubDestinationSettings

pub struct DvbSubDestinationSettings {
    pub alignment: Option<String>,
    pub background_color: Option<String>,
    pub background_opacity: Option<i64>,
    pub font_color: Option<String>,
    pub font_opacity: Option<i64>,
    pub font_resolution: Option<i64>,
    pub font_script: Option<String>,
    pub font_size: Option<i64>,
    pub outline_color: Option<String>,
    pub outline_size: Option<i64>,
    pub shadow_color: Option<String>,
    pub shadow_opacity: Option<i64>,
    pub shadow_x_offset: Option<i64>,
    pub shadow_y_offset: Option<i64>,
    pub teletext_spacing: Option<String>,
    pub x_position: Option<i64>,
    pub y_position: Option<i64>,
}

DVB-Sub Destination Settings

Fields

alignment: Option<String>background_color: Option<String>background_opacity: Option<i64>

Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.

font_color: Option<String>font_opacity: Option<i64>

Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.

font_resolution: Option<i64>

Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.

font_script: Option<String>

Provide the font script, using an ISO 15924 script code, if the LanguageCode is not sufficient for determining the script type. Where LanguageCode or CustomLanguageCode is sufficient, use "AUTOMATIC" or leave unset. This is used to help determine the appropriate font for rendering DVB-Sub captions.

font_size: Option<i64>

A positive integer indicates the exact font size in points. Set to 0 for automatic font size selection. All burn-in and DVB-Sub font settings must match.

outline_color: Option<String>outline_size: Option<i64>

Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.

shadow_color: Option<String>shadow_opacity: Option<i64>

Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.

shadow_x_offset: Option<i64>

Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.

shadow_y_offset: Option<i64>

Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.

teletext_spacing: Option<String>x_position: Option<i64>

Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit x_position is provided, the horizontal caption position will be determined by the alignment parameter. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.

y_position: Option<i64>

Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit y_position is provided, the caption will be positioned towards the bottom of the output. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.

Trait Implementations

impl PartialEq<DvbSubDestinationSettings> for DvbSubDestinationSettings[src]

impl Clone for DvbSubDestinationSettings[src]

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

Performs copy-assignment from source. Read more

impl Default for DvbSubDestinationSettings[src]

impl Debug for DvbSubDestinationSettings[src]

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

impl Serialize for DvbSubDestinationSettings[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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]

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

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

type Output = T

Should always be Self