[][src]Struct rusoto_mediaconvert::MotionImageInsertionFramerate

pub struct MotionImageInsertionFramerate {
    pub framerate_denominator: Option<i64>,
    pub framerate_numerator: Option<i64>,
}

For motion overlays that don't have a built-in frame rate, specify the frame rate of the overlay in frames per second, as a fraction. For example, specify 24 fps as 24/1. The overlay frame rate doesn't need to match the frame rate of the underlying video.

Fields

framerate_denominator: Option<i64>

The bottom of the fraction that expresses your overlay frame rate. For example, if your frame rate is 24 fps, set this value to 1.

framerate_numerator: Option<i64>

The top of the fraction that expresses your overlay frame rate. For example, if your frame rate is 24 fps, set this value to 24.

Trait Implementations

impl Clone for MotionImageInsertionFramerate[src]

impl Debug for MotionImageInsertionFramerate[src]

impl Default for MotionImageInsertionFramerate[src]

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

impl PartialEq<MotionImageInsertionFramerate> for MotionImageInsertionFramerate[src]

impl Serialize for MotionImageInsertionFramerate[src]

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