pub struct GetRecordsOutput {
pub next_shard_iterator: Option<String>,
pub records: Option<Vec<Record>>,
}Expand description
Represents the output of a GetRecords operation.
Fields§
§next_shard_iterator: Option<String>The next position in the shard from which to start sequentially reading stream records. If set to null, the shard has been closed and the requested iterator will not return any more data.
records: Option<Vec<Record>>The stream records from the shard, which were retrieved using the shard iterator.
Trait Implementations§
Source§impl Clone for GetRecordsOutput
impl Clone for GetRecordsOutput
Source§fn clone(&self) -> GetRecordsOutput
fn clone(&self) -> GetRecordsOutput
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 GetRecordsOutput
impl Debug for GetRecordsOutput
Source§impl Default for GetRecordsOutput
impl Default for GetRecordsOutput
Source§fn default() -> GetRecordsOutput
fn default() -> GetRecordsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetRecordsOutput
impl<'de> Deserialize<'de> for GetRecordsOutput
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 GetRecordsOutput
impl PartialEq for GetRecordsOutput
impl StructuralPartialEq for GetRecordsOutput
Auto Trait Implementations§
impl Freeze for GetRecordsOutput
impl RefUnwindSafe for GetRecordsOutput
impl Send for GetRecordsOutput
impl Sync for GetRecordsOutput
impl Unpin for GetRecordsOutput
impl UnwindSafe for GetRecordsOutput
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