[][src]Struct rusoto_elastictranscoder::DetectedProperties

pub struct DetectedProperties {
    pub duration_millis: Option<i64>,
    pub file_size: Option<i64>,
    pub frame_rate: Option<String>,
    pub height: Option<i64>,
    pub width: Option<i64>,
}

The detected properties of the input file. Elastic Transcoder identifies these values from the input file.

Fields

duration_millis: Option<i64>

The detected duration of the input file, in milliseconds.

file_size: Option<i64>

The detected file size of the input file, in bytes.

frame_rate: Option<String>

The detected frame rate of the input file, in frames per second.

height: Option<i64>

The detected height of the input file, in pixels.

width: Option<i64>

The detected width of the input file, in pixels.

Trait Implementations

impl Clone for DetectedProperties[src]

impl Debug for DetectedProperties[src]

impl Default for DetectedProperties[src]

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

impl PartialEq<DetectedProperties> for DetectedProperties[src]

impl Serialize for DetectedProperties[src]

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