[][src]Struct rusoto_kinesis::Shard

pub struct Shard {
    pub adjacent_parent_shard_id: Option<String>,
    pub hash_key_range: HashKeyRange,
    pub parent_shard_id: Option<String>,
    pub sequence_number_range: SequenceNumberRange,
    pub shard_id: String,
}

A uniquely identified group of data records in a Kinesis data stream.

Fields

adjacent_parent_shard_id: Option<String>

The shard ID of the shard adjacent to the shard's parent.

hash_key_range: HashKeyRange

The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.

parent_shard_id: Option<String>

The shard ID of the shard's parent.

sequence_number_range: SequenceNumberRange

The range of possible sequence numbers for the shard.

shard_id: String

The unique identifier of the shard within the stream.

Trait Implementations

impl PartialEq<Shard> for Shard[src]

impl Default for Shard[src]

impl Clone for Shard[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Shard[src]

impl<'de> Deserialize<'de> for Shard[src]

Auto Trait Implementations

impl Send for Shard

impl Sync for Shard

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self