Struct rusoto_dynamodbstreams::SequenceNumberRange[][src]

pub struct SequenceNumberRange {
    pub ending_sequence_number: Option<String>,
    pub starting_sequence_number: Option<String>,
}

The beginning and ending sequence numbers for the stream records contained within a shard.

Fields

The last sequence number.

The first sequence number.

Trait Implementations

impl Default for SequenceNumberRange
[src]

Returns the "default value" for a type. Read more

impl Debug for SequenceNumberRange
[src]

Formats the value using the given formatter. Read more

impl Clone for SequenceNumberRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SequenceNumberRange
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations