pub struct GetShardIteratorOutput {
pub shard_iterator: Option<String>,
}Expand description
Represents the output of a GetShardIterator operation.
Fields§
§shard_iterator: Option<String>The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
Trait Implementations§
Source§impl Clone for GetShardIteratorOutput
impl Clone for GetShardIteratorOutput
Source§fn clone(&self) -> GetShardIteratorOutput
fn clone(&self) -> GetShardIteratorOutput
Returns a duplicate 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 moreSource§impl Debug for GetShardIteratorOutput
impl Debug for GetShardIteratorOutput
Source§impl Default for GetShardIteratorOutput
impl Default for GetShardIteratorOutput
Source§fn default() -> GetShardIteratorOutput
fn default() -> GetShardIteratorOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetShardIteratorOutput
impl<'de> Deserialize<'de> for GetShardIteratorOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetShardIteratorOutput
impl PartialEq for GetShardIteratorOutput
impl StructuralPartialEq for GetShardIteratorOutput
Auto Trait Implementations§
impl Freeze for GetShardIteratorOutput
impl RefUnwindSafe for GetShardIteratorOutput
impl Send for GetShardIteratorOutput
impl Sync for GetShardIteratorOutput
impl Unpin for GetShardIteratorOutput
impl UnwindSafe for GetShardIteratorOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more