[][src]Struct rusoto_medialive::FecOutputSettings

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

Fec Output Settings

Fields

column_depth: Option<i64>

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.

include_fec: Option<String>

Enables column only or column and row based FEC

row_length: Option<i64>

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 PartialEq<FecOutputSettings> for FecOutputSettings[src]

impl Default for FecOutputSettings[src]

impl Clone for FecOutputSettings[src]

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

Performs copy-assignment from source. Read more

impl Debug for FecOutputSettings[src]

impl Serialize for FecOutputSettings[src]

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

Auto Trait Implementations

impl Send for FecOutputSettings

impl Sync for FecOutputSettings

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]

type Owned = T

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

type Error = !

🔬 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> 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

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

The type returned in the event of a conversion error.

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

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