#[non_exhaustive]pub struct StreamProcessingStopSelector { /* private fields */ }Expand description
Specifies when to stop processing the stream. You can specify a maximum amount of time to process the video.
Implementations
sourceimpl StreamProcessingStopSelector
impl StreamProcessingStopSelector
sourcepub fn max_duration_in_seconds(&self) -> Option<i64>
pub fn max_duration_in_seconds(&self) -> Option<i64>
Specifies the maximum amount of time in seconds that you want the stream to be processed. The largest amount of time is 2 minutes. The default is 10 seconds.
sourceimpl StreamProcessingStopSelector
impl StreamProcessingStopSelector
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StreamProcessingStopSelector.
Trait Implementations
sourceimpl Clone for StreamProcessingStopSelector
impl Clone for StreamProcessingStopSelector
sourcefn clone(&self) -> StreamProcessingStopSelector
fn clone(&self) -> StreamProcessingStopSelector
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 StreamProcessingStopSelector
impl Debug for StreamProcessingStopSelector
sourceimpl PartialEq<StreamProcessingStopSelector> for StreamProcessingStopSelector
impl PartialEq<StreamProcessingStopSelector> for StreamProcessingStopSelector
sourcefn eq(&self, other: &StreamProcessingStopSelector) -> bool
fn eq(&self, other: &StreamProcessingStopSelector) -> bool
impl StructuralPartialEq for StreamProcessingStopSelector
Auto Trait Implementations
impl RefUnwindSafe for StreamProcessingStopSelector
impl Send for StreamProcessingStopSelector
impl Sync for StreamProcessingStopSelector
impl Unpin for StreamProcessingStopSelector
impl UnwindSafe for StreamProcessingStopSelector
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