Struct aws_sdk_elastictranscoder::model::DetectedProperties [−][src]
#[non_exhaustive]pub struct DetectedProperties {
pub width: Option<i32>,
pub height: Option<i32>,
pub frame_rate: Option<String>,
pub file_size: Option<i64>,
pub duration_millis: Option<i64>,
}
Expand description
The detected properties of the input file. Elastic Transcoder identifies these values from the input file.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.width: Option<i32>
The detected width of the input file, in pixels.
height: Option<i32>
The detected height of the input file, in pixels.
frame_rate: Option<String>
The detected frame rate of the input file, in frames per second.
file_size: Option<i64>
The detected file size of the input file, in bytes.
duration_millis: Option<i64>
The detected duration of the input file, in milliseconds.
Implementations
Creates a new builder-style object to manufacture DetectedProperties
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DetectedProperties
impl Send for DetectedProperties
impl Sync for DetectedProperties
impl Unpin for DetectedProperties
impl UnwindSafe for DetectedProperties
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more