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

impl Debug for FecOutputSettings[src]

impl Default for FecOutputSettings[src]

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

impl PartialEq<FecOutputSettings> for FecOutputSettings[src]

impl Serialize for FecOutputSettings[src]

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