Struct aws_sdk_transcribe::model::RelativeTimeRange
source · [−]#[non_exhaustive]pub struct RelativeTimeRange {
pub start_percentage: Option<i32>,
pub end_percentage: Option<i32>,
pub first: Option<i32>,
pub last: Option<i32>,
}
Expand description
An object that allows percentages to specify the proportion of the call where you would like to apply a filter. For example, you can specify the first half of the call. You can also specify the period of time between halfway through to three-quarters of the way through the call. Because the length of conversation can vary between calls, you can apply relative time ranges across all calls.
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.start_percentage: Option<i32>
A value that indicates the percentage of the beginning of the time range. To set a relative time range, you must specify a start percentage and an end percentage. For example, if you specify the following values:
-
StartPercentage - 10
-
EndPercentage - 50
This looks at the time range starting from 10% of the way into the call to 50% of the way through the call. For a call that lasts 100,000 milliseconds, this example range would apply from the 10,000 millisecond mark to the 50,000 millisecond mark.
end_percentage: Option<i32>
A value that indicates the percentage of the end of the time range. To set a relative time range, you must specify a start percentage and an end percentage. For example, if you specify the following values:
-
StartPercentage - 10
-
EndPercentage - 50
This looks at the time range starting from 10% of the way into the call to 50% of the way through the call. For a call that lasts 100,000 milliseconds, this example range would apply from the 10,000 millisecond mark to the 50,000 millisecond mark.
first: Option<i32>
A range that takes the portion of the call up to the time in milliseconds set by the value that you've specified. For example, if you specify 120000
, the time range is set for the first 120,000 milliseconds of the call.
last: Option<i32>
A range that takes the portion of the call from the time in milliseconds set by the value that you've specified to the end of the call. For example, if you specify 120000
, the time range is set for the last 120,000 milliseconds of the call.
Implementations
sourceimpl RelativeTimeRange
impl RelativeTimeRange
sourcepub fn start_percentage(&self) -> Option<i32>
pub fn start_percentage(&self) -> Option<i32>
A value that indicates the percentage of the beginning of the time range. To set a relative time range, you must specify a start percentage and an end percentage. For example, if you specify the following values:
-
StartPercentage - 10
-
EndPercentage - 50
This looks at the time range starting from 10% of the way into the call to 50% of the way through the call. For a call that lasts 100,000 milliseconds, this example range would apply from the 10,000 millisecond mark to the 50,000 millisecond mark.
sourcepub fn end_percentage(&self) -> Option<i32>
pub fn end_percentage(&self) -> Option<i32>
A value that indicates the percentage of the end of the time range. To set a relative time range, you must specify a start percentage and an end percentage. For example, if you specify the following values:
-
StartPercentage - 10
-
EndPercentage - 50
This looks at the time range starting from 10% of the way into the call to 50% of the way through the call. For a call that lasts 100,000 milliseconds, this example range would apply from the 10,000 millisecond mark to the 50,000 millisecond mark.
sourceimpl RelativeTimeRange
impl RelativeTimeRange
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RelativeTimeRange
Trait Implementations
sourceimpl Clone for RelativeTimeRange
impl Clone for RelativeTimeRange
sourcefn clone(&self) -> RelativeTimeRange
fn clone(&self) -> RelativeTimeRange
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 more
sourceimpl Debug for RelativeTimeRange
impl Debug for RelativeTimeRange
sourceimpl PartialEq<RelativeTimeRange> for RelativeTimeRange
impl PartialEq<RelativeTimeRange> for RelativeTimeRange
sourcefn eq(&self, other: &RelativeTimeRange) -> bool
fn eq(&self, other: &RelativeTimeRange) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RelativeTimeRange) -> bool
fn ne(&self, other: &RelativeTimeRange) -> bool
This method tests for !=
.
impl StructuralPartialEq for RelativeTimeRange
Auto Trait Implementations
impl RefUnwindSafe for RelativeTimeRange
impl Send for RelativeTimeRange
impl Sync for RelativeTimeRange
impl Unpin for RelativeTimeRange
impl UnwindSafe for RelativeTimeRange
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more