Struct rusoto_elastictranscoder::TimeSpan[][src]

pub struct TimeSpan {
    pub duration: Option<String>,
    pub start_time: Option<String>,
}

Settings that determine when a clip begins and how long it lasts.

Fields

The duration of the clip. The format can be either HH:mm:ss.SSS (maximum value: 23:59:59.999; SSS is thousandths of a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a value, Elastic Transcoder creates an output file from StartTime to the end of the file.

If you specify a value longer than the duration of the input file, Elastic Transcoder transcodes the file and returns a warning message.

The place in the input file where you want a clip to start. The format can be either HH:mm:ss.SSS (maximum value: 23:59:59.999; SSS is thousandths of a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a value, Elastic Transcoder starts at the beginning of the input file.

Trait Implementations

impl Default for TimeSpan
[src]

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

impl Debug for TimeSpan
[src]

Formats the value using the given formatter. Read more

impl Clone for TimeSpan
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TimeSpan
[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

impl Send for TimeSpan

impl Sync for TimeSpan