Struct aws_sdk_elastictranscoder::types::builders::TimingBuilder
source · #[non_exhaustive]pub struct TimingBuilder { /* private fields */ }
Expand description
A builder for Timing
.
Implementations§
source§impl TimingBuilder
impl TimingBuilder
sourcepub fn submit_time_millis(self, input: i64) -> Self
pub fn submit_time_millis(self, input: i64) -> Self
The time the job was submitted to Elastic Transcoder, in epoch milliseconds.
sourcepub fn set_submit_time_millis(self, input: Option<i64>) -> Self
pub fn set_submit_time_millis(self, input: Option<i64>) -> Self
The time the job was submitted to Elastic Transcoder, in epoch milliseconds.
sourcepub fn get_submit_time_millis(&self) -> &Option<i64>
pub fn get_submit_time_millis(&self) -> &Option<i64>
The time the job was submitted to Elastic Transcoder, in epoch milliseconds.
sourcepub fn start_time_millis(self, input: i64) -> Self
pub fn start_time_millis(self, input: i64) -> Self
The time the job began transcoding, in epoch milliseconds.
sourcepub fn set_start_time_millis(self, input: Option<i64>) -> Self
pub fn set_start_time_millis(self, input: Option<i64>) -> Self
The time the job began transcoding, in epoch milliseconds.
sourcepub fn get_start_time_millis(&self) -> &Option<i64>
pub fn get_start_time_millis(&self) -> &Option<i64>
The time the job began transcoding, in epoch milliseconds.
sourcepub fn finish_time_millis(self, input: i64) -> Self
pub fn finish_time_millis(self, input: i64) -> Self
The time the job finished transcoding, in epoch milliseconds.
sourcepub fn set_finish_time_millis(self, input: Option<i64>) -> Self
pub fn set_finish_time_millis(self, input: Option<i64>) -> Self
The time the job finished transcoding, in epoch milliseconds.
sourcepub fn get_finish_time_millis(&self) -> &Option<i64>
pub fn get_finish_time_millis(&self) -> &Option<i64>
The time the job finished transcoding, in epoch milliseconds.
Trait Implementations§
source§impl Clone for TimingBuilder
impl Clone for TimingBuilder
source§fn clone(&self) -> TimingBuilder
fn clone(&self) -> TimingBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TimingBuilder
impl Debug for TimingBuilder
source§impl Default for TimingBuilder
impl Default for TimingBuilder
source§fn default() -> TimingBuilder
fn default() -> TimingBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TimingBuilder
impl PartialEq for TimingBuilder
source§fn eq(&self, other: &TimingBuilder) -> bool
fn eq(&self, other: &TimingBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TimingBuilder
Auto Trait Implementations§
impl Freeze for TimingBuilder
impl RefUnwindSafe for TimingBuilder
impl Send for TimingBuilder
impl Sync for TimingBuilder
impl Unpin for TimingBuilder
impl UnwindSafe for TimingBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.