[][src]Struct rusoto_mediapackage_vod::DashPackage

pub struct DashPackage {
    pub dash_manifests: Vec<DashManifest>,
    pub encryption: Option<DashEncryption>,
    pub period_triggers: Option<Vec<String>>,
    pub segment_duration_seconds: Option<i64>,
    pub segment_template_format: Option<String>,
}

A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.

Fields

dash_manifests: Vec<DashManifest>

A list of DASH manifest configurations.

encryption: Option<DashEncryption>period_triggers: Option<Vec<String>>

A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not be partitioned into more than one period. If the list contains "ADS", new periods will be created where the Asset contains SCTE-35 ad markers.

segment_duration_seconds: Option<i64>

Duration (in seconds) of each segment. Actual segments will be rounded to the nearest multiple of the source segment duration.

segment_template_format: Option<String>

Determines the type of SegmentTemplate included in the Media Presentation Description (MPD). When set to NUMBERWITHTIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs. When set to TIMEWITHTIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBERWITHDURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.

Trait Implementations

impl Clone for DashPackage[src]

impl Debug for DashPackage[src]

impl Default for DashPackage[src]

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

impl PartialEq<DashPackage> for DashPackage[src]

impl Serialize for DashPackage[src]

impl StructuralPartialEq for DashPackage[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: for<'de> 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> Sealed<T> for T where
    T: ?Sized

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.