Struct rusoto_elastictranscoder::DetectedProperties[][src]

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

The detected duration of the input file, in milliseconds.

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

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

The detected height of the input file, in pixels.

The detected width of the input file, in pixels.

Trait Implementations

impl Default for DetectedProperties
[src]

Returns the "default value" for a type. Read more

impl Debug for DetectedProperties
[src]

Formats the value using the given formatter. Read more

impl Clone for DetectedProperties
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DetectedProperties
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations