#[non_exhaustive]pub struct DetectedProperties { /* private fields */ }
Expand description
The detected properties of the input file. Elastic Transcoder identifies these values from the input file.
Implementations
sourceimpl DetectedProperties
impl DetectedProperties
sourcepub fn frame_rate(&self) -> Option<&str>
pub fn frame_rate(&self) -> Option<&str>
The detected frame rate of the input file, in frames per second.
sourcepub fn duration_millis(&self) -> Option<i64>
pub fn duration_millis(&self) -> Option<i64>
The detected duration of the input file, in milliseconds.
sourceimpl DetectedProperties
impl DetectedProperties
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DetectedProperties
.
Trait Implementations
sourceimpl Clone for DetectedProperties
impl Clone for DetectedProperties
sourcefn clone(&self) -> DetectedProperties
fn clone(&self) -> DetectedProperties
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DetectedProperties
impl Debug for DetectedProperties
sourceimpl PartialEq<DetectedProperties> for DetectedProperties
impl PartialEq<DetectedProperties> for DetectedProperties
sourcefn eq(&self, other: &DetectedProperties) -> bool
fn eq(&self, other: &DetectedProperties) -> bool
impl StructuralPartialEq for DetectedProperties
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more