[][src]Struct rusoto_mediaconvert::ContainerSettings

pub struct ContainerSettings {
    pub container: Option<String>,
    pub f_4v_settings: Option<F4vSettings>,
    pub m_2ts_settings: Option<M2tsSettings>,
    pub m_3u_8_settings: Option<M3u8Settings>,
    pub mov_settings: Option<MovSettings>,
    pub mp_4_settings: Option<Mp4Settings>,
}

Container specific settings.

Fields

container: Option<String>

Container for this output. Some containers require a container settings object. If not specified, the default object will be created.

f_4v_settings: Option<F4vSettings>

Settings for F4v container

m_2ts_settings: Option<M2tsSettings>

MPEG-2 TS container settings. These apply to outputs in a File output group when the output's container (ContainerType) is MPEG-2 Transport Stream (M2TS). In these assets, data is organized by the program map table (PMT). Each transport stream program contains subsets of data, including audio, video, and metadata. Each of these subsets of data has a numerical label called a packet identifier (PID). Each transport stream program corresponds to one MediaConvert output. The PMT lists the types of data in a program along with their PID. Downstream systems and players use the program map table to look up the PID for each type of data it accesses and then uses the PIDs to locate specific data within the asset.

m_3u_8_settings: Option<M3u8Settings>

Settings for TS segments in HLS

mov_settings: Option<MovSettings>

Settings for MOV Container.

mp_4_settings: Option<Mp4Settings>

Settings for MP4 Container

Trait Implementations

impl PartialEq<ContainerSettings> for ContainerSettings[src]

impl Default for ContainerSettings[src]

impl Clone for ContainerSettings[src]

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

Performs copy-assignment from source. Read more

impl Debug for ContainerSettings[src]

impl Serialize for ContainerSettings[src]

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

Auto Trait Implementations

impl Send for ContainerSettings

impl Sync for ContainerSettings

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