[][src]Struct rusoto_mediaconvert::SccDestinationSettings

pub struct SccDestinationSettings {
    pub framerate: Option<String>,
}

Settings for SCC caption output.

Fields

framerate: Option<String>

Set Framerate (SccDestinationFramerate) to make sure that the captions and the video are synchronized in the output. Specify a frame rate that matches the frame rate of the associated video. If the video frame rate is 29.97, choose 29.97 dropframe (FRAMERATE2997DROPFRAME) only if the video has videoinsertion=true and dropframetimecode=true; otherwise, choose 29.97 non-dropframe (FRAMERATE2997NONDROPFRAME).

Trait Implementations

impl Clone for SccDestinationSettings[src]

impl Debug for SccDestinationSettings[src]

impl Default for SccDestinationSettings[src]

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

impl PartialEq<SccDestinationSettings> for SccDestinationSettings[src]

impl Serialize for SccDestinationSettings[src]

impl StructuralPartialEq for SccDestinationSettings[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> Instrument for T[src]

impl<T> Instrument 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.