#[non_exhaustive]pub struct KinesisVideoStreamStartSelector { /* private fields */ }Expand description
Specifies the starting point in a Kinesis stream to start processing. You can use the producer timestamp or the fragment number. For more information, see Fragment.
Implementations
sourceimpl KinesisVideoStreamStartSelector
impl KinesisVideoStreamStartSelector
sourcepub fn producer_timestamp(&self) -> Option<i64>
pub fn producer_timestamp(&self) -> Option<i64>
The timestamp from the producer corresponding to the fragment.
sourcepub fn fragment_number(&self) -> Option<&str>
pub fn fragment_number(&self) -> Option<&str>
The unique identifier of the fragment. This value monotonically increases based on the ingestion order.
sourceimpl KinesisVideoStreamStartSelector
impl KinesisVideoStreamStartSelector
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture KinesisVideoStreamStartSelector.
Trait Implementations
sourceimpl Clone for KinesisVideoStreamStartSelector
impl Clone for KinesisVideoStreamStartSelector
sourcefn clone(&self) -> KinesisVideoStreamStartSelector
fn clone(&self) -> KinesisVideoStreamStartSelector
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 PartialEq<KinesisVideoStreamStartSelector> for KinesisVideoStreamStartSelector
impl PartialEq<KinesisVideoStreamStartSelector> for KinesisVideoStreamStartSelector
sourcefn eq(&self, other: &KinesisVideoStreamStartSelector) -> bool
fn eq(&self, other: &KinesisVideoStreamStartSelector) -> bool
impl StructuralPartialEq for KinesisVideoStreamStartSelector
Auto Trait Implementations
impl RefUnwindSafe for KinesisVideoStreamStartSelector
impl Send for KinesisVideoStreamStartSelector
impl Sync for KinesisVideoStreamStartSelector
impl Unpin for KinesisVideoStreamStartSelector
impl UnwindSafe for KinesisVideoStreamStartSelector
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