#[non_exhaustive]pub struct SequenceNumberRange { /* private fields */ }
Expand description
The beginning and ending sequence numbers for the stream records contained within a shard.
Implementations§
source§impl SequenceNumberRange
impl SequenceNumberRange
sourcepub fn starting_sequence_number(&self) -> Option<&str>
pub fn starting_sequence_number(&self) -> Option<&str>
The first sequence number for the stream records contained within a shard. String contains numeric characters only.
sourcepub fn ending_sequence_number(&self) -> Option<&str>
pub fn ending_sequence_number(&self) -> Option<&str>
The last sequence number for the stream records contained within a shard. String contains numeric characters only.
source§impl SequenceNumberRange
impl SequenceNumberRange
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SequenceNumberRange
.
Trait Implementations§
source§impl Clone for SequenceNumberRange
impl Clone for SequenceNumberRange
source§fn clone(&self) -> SequenceNumberRange
fn clone(&self) -> SequenceNumberRange
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 more