[][src]Struct rusoto_medialive::FecOutputSettings

pub struct FecOutputSettings {
    pub column_depth: Option<i64>,
    pub include_fec: Option<String>,
    pub row_length: Option<i64>,
}

Placeholder documentation for FecOutputSettings

Fields

Parameter D from SMPTE 2022-1. The height of the FEC protection matrix. The number of transport stream packets per column error correction packet. Must be between 4 and 20, inclusive.

Enables column only or column and row based FEC

Parameter L from SMPTE 2022-1. The width of the FEC protection matrix. Must be between 1 and 20, inclusive. If only Column FEC is used, then larger values increase robustness. If Row FEC is used, then this is the number of transport stream packets per row error correction packet, and the value must be between 4 and 20, inclusive, if includeFec is columnAndRow. If includeFec is column, this value must be 1 to 20, inclusive.

Trait Implementations

impl Clone for FecOutputSettings
[src]

Performs copy-assignment from source. Read more

impl Default for FecOutputSettings
[src]

impl PartialEq<FecOutputSettings> for FecOutputSettings
[src]

impl Debug for FecOutputSettings
[src]

impl Serialize for FecOutputSettings
[src]

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

Auto Trait Implementations

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]

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

🔬 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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T