pub struct GetRecordsInput {
pub limit: Option<i64>,
pub shard_iterator: String,
}Expand description
Represents the input of a GetRecords operation.
Fields§
§limit: Option<i64>The maximum number of records to return from the shard. The upper limit is 1000.
shard_iterator: StringA shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
Trait Implementations§
Source§impl Clone for GetRecordsInput
impl Clone for GetRecordsInput
Source§fn clone(&self) -> GetRecordsInput
fn clone(&self) -> GetRecordsInput
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 GetRecordsInput
impl Debug for GetRecordsInput
Source§impl Default for GetRecordsInput
impl Default for GetRecordsInput
Source§fn default() -> GetRecordsInput
fn default() -> GetRecordsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetRecordsInput
impl PartialEq for GetRecordsInput
Source§impl Serialize for GetRecordsInput
impl Serialize for GetRecordsInput
impl StructuralPartialEq for GetRecordsInput
Auto Trait Implementations§
impl Freeze for GetRecordsInput
impl RefUnwindSafe for GetRecordsInput
impl Send for GetRecordsInput
impl Sync for GetRecordsInput
impl Unpin for GetRecordsInput
impl UnwindSafe for GetRecordsInput
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